You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2011/02/12 22:16:53 UTC

svn commit: r1070150 - /karaf/trunk/manual/src/main/webapp/developers-guide/custom-distribution.conf

Author: jbonofre
Date: Sat Feb 12 21:16:51 2011
New Revision: 1070150

URL: http://svn.apache.org/viewvc?rev=1070150&view=rev
Log:
[KARAF-362] Add a note about etc/custom.properties file in the custom distribution documentation chapter.

Modified:
    karaf/trunk/manual/src/main/webapp/developers-guide/custom-distribution.conf

Modified: karaf/trunk/manual/src/main/webapp/developers-guide/custom-distribution.conf
URL: http://svn.apache.org/viewvc/karaf/trunk/manual/src/main/webapp/developers-guide/custom-distribution.conf?rev=1070150&r1=1070149&r2=1070150&view=diff
==============================================================================
--- karaf/trunk/manual/src/main/webapp/developers-guide/custom-distribution.conf (original)
+++ karaf/trunk/manual/src/main/webapp/developers-guide/custom-distribution.conf Sat Feb 12 21:16:51 2011
@@ -286,6 +286,18 @@ custom.home=${karaf.home}
 {code}
 admin=admin,admin
 {code}
+* You can add a {{etc/custom.properties}}, it's a placeholder for any override you may need. For instance:
+{code}
+karaf.systemBundlesStartLevel=50
+obr.repository.url=http://svn.apache.org/repos/asf/servicemix/smx4/obr-repo/repository.xml
+org.osgi.framework.system.packages.extra = \
+  org.apache.karaf.branding; \
+  com.sun.org.apache.xalan.internal.xsltc.trax; \
+  com.sun.org.apache.xerces.internal.dom; \
+  com.sun.org.apache.xerces.internal.jaxp; \
+  com.sun.org.apache.xerces.internal.xni; \
+  com.sun.jndi.ldap
+{code}
 
 Now, we can "assemble" our custom distribution using the Maven assembly plugin. The Maven assembly plugin uses an assembly descriptor in the {{src/main/descriptors/bin.xml}}: