Fix OSGi boot
[lgpl/argeo-commons.git] / osgi / runtime / org.argeo.osgi.boot / src / main / java / org / argeo / osgi / boot / OsgiBoot.java
index 029801b2e2932cc12831933e7cb49cc5610cc31d..94fccdcee2058cfa913c3f5f97194a8aaeb98175 100644 (file)
@@ -94,10 +94,11 @@ public class OsgiBoot {
         * (last part of the URL). The goal is to stay closer from Eclipse PDE way
         * of installing target platform bundles.
         */
-       private boolean installInLexicographicOrder = Boolean.valueOf(
-                       System.getProperty(
-                                       PROP_ARGEO_OSGI_BOOT_INSTALL_IN_LEXICOGRAPHIC_ORDER,
-                                       "false")).booleanValue();;
+       private boolean installInLexicographicOrder = Boolean
+                       .valueOf(
+                                       System.getProperty(
+                                                       PROP_ARGEO_OSGI_BOOT_INSTALL_IN_LEXICOGRAPHIC_ORDER,
+                                                       "true")).booleanValue();;
 
        /** Default is 10s (set in constructor) */
        private long defaultTimeout;
@@ -793,6 +794,14 @@ public class OsgiBoot {
                this.modulesUrlSeparator = modulesUrlSeparator;
        }
 
+       public boolean isExcludeSvn() {
+               return excludeSvn;
+       }
+
+       public void setExcludeSvn(boolean excludeSvn) {
+               this.excludeSvn = excludeSvn;
+       }
+
        /*
         * INTERNAL CLASSES
         */