diff -r 4782c9d6564a apisupport.harness/release/README --- a/apisupport.harness/release/README Tue Nov 08 12:40:51 2011 +0100 +++ b/apisupport.harness/release/README Wed Nov 09 17:37:48 2011 +0100 @@ -675,6 +675,10 @@ is.autoload and is.eager - default false, but if true, make this module an autoload or eager module. +module.startlevel [since 7.1] - modules which are OSGi bundles can specify it +start level (a positive integer) via this property. Default is empty, meaning +no start level specified for the bundle (according to OSGi spec defaults to 1). + javac.compilerargs [since 5.0u1] - default none; additional arguments to pass to the Java compiler, e.g. "-Xlint:unchecked". diff -r 4782c9d6564a c.atlassian.connector.eclipse.commons.core/nbproject/project.properties --- a/c.atlassian.connector.eclipse.commons.core/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/c.atlassian.connector.eclipse.commons.core/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/com.atlassian.connector.eclipse.commons.core-3.0.0.jar=modules/com-atlassian-connector-eclipse-commons-core.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a c.atlassian.connector.eclipse.jira.core/nbproject/project.properties --- a/c.atlassian.connector.eclipse.jira.core/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/c.atlassian.connector.eclipse.jira.core/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/com.atlassian.connector.eclipse.jira.core-3.0.0.jar=modules/com-atlassian-connector-eclipse-jira-core.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a c.jcraft.jsch/nbproject/project.properties --- a/c.jcraft.jsch/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/c.jcraft.jsch/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -41,6 +41,8 @@ # made subject to such option by the copyright holder. is.autoload=true +module.startlevel=4 + extra.license.files=external/jsch-0.1.44-license.txt sigtest.gen.fail.on.error=false diff -r 4782c9d6564a c.jcraft.jzlib/nbproject/project.properties --- a/c.jcraft.jzlib/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/c.jcraft.jzlib/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -41,6 +41,8 @@ # made subject to such option by the copyright holder. is.autoload=true +module.startlevel=4 + extra.license.files=external/jzlib-1.0.7-license.txt spec.version.base=1.10.0 sigtest.gen.fail.on.error=false diff -r 4782c9d6564a core.netigso/src/org/netbeans/core/netigso/Netigso.java --- a/core.netigso/src/org/netbeans/core/netigso/Netigso.java Tue Nov 08 12:40:51 2011 +0100 +++ b/core.netigso/src/org/netbeans/core/netigso/Netigso.java Wed Nov 09 17:37:48 2011 +0100 @@ -130,6 +130,10 @@ configMap.put("netigso.archive", NetigsoArchiveFactory.DEFAULT.create(this)); // NOI18N configMap.put("felix.log.level", "4"); // NOI18N configMap.put("felix.bootdelegation.classloaders", activator); // NOI18N + String startLevel = NbBundle.getMessage(Netigso.class, "FRAMEWORK_START_LEVEL"); + if (startLevel.length() > 0) { + configMap.put("org.osgi.framework.startlevel.beginning", startLevel); // NOI18N + } FrameworkFactory frameworkFactory = lkp.lookup(FrameworkFactory.class); if (frameworkFactory == null) { throw new IllegalStateException( @@ -164,10 +168,6 @@ @Override protected void start() { try { - String startLevel = NbBundle.getMessage(Netigso.class, "FRAMEWORK_START_LEVEL"); - if (startLevel.length() > 0) { - setFrameworkStartLevel(framework.getBundleContext(), Integer.parseInt(startLevel)); - } framework.start(); } catch (BundleException ex) { LOG.log(Level.WARNING, "Cannot start Container" + framework, ex); diff -r 4782c9d6564a ide.branding/build.xml --- a/ide.branding/build.xml Tue Nov 08 12:40:51 2011 +0100 +++ b/ide.branding/build.xml Wed Nov 09 17:37:48 2011 +0100 @@ -70,6 +70,12 @@ + + + + diff -r 4782c9d6564a ide.branding/core.netigso/src/org/netbeans/core/netigso/Bundle_nb.properties --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ide.branding/core.netigso/src/org/netbeans/core/netigso/Bundle_nb.properties Wed Nov 09 17:37:48 2011 +0100 @@ -0,0 +1,2 @@ +# NOI18N +FRAMEWORK_START_LEVEL=10 diff -r 4782c9d6564a javax.activation/nbproject/project.properties --- a/javax.activation/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/javax.activation/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a javax.mail/nbproject/project.properties --- a/javax.mail/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/javax.mail/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a javax.servlet/nbproject/project.properties --- a/javax.servlet/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/javax.servlet/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a javax.xml.rpc/nbproject/project.properties --- a/javax.xml.rpc/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/javax.xml.rpc/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a javax.xml.soap/nbproject/project.properties --- a/javax.xml.soap/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/javax.xml.soap/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a nbbuild/antsrc/org/netbeans/nbbuild/CreateModuleXML.java --- a/nbbuild/antsrc/org/netbeans/nbbuild/CreateModuleXML.java Tue Nov 08 12:40:51 2011 +0100 +++ b/nbbuild/antsrc/org/netbeans/nbbuild/CreateModuleXML.java Wed Nov 09 17:37:48 2011 +0100 @@ -62,6 +62,7 @@ private final List autoload = new ArrayList(1); private final List eager = new ArrayList(1); private final List hidden = new ArrayList(1); + private Integer level; /** Add a set of module JARs that should be enabled. */ @@ -117,6 +118,13 @@ public void setFailOnMissingManifest(boolean fail) { failOnMissingManifest = fail; } + public void setStartLevel(String level) { + if (level.length() == 0) { + this.level = null; + } else { + this.level = Integer.parseInt(level); + } + } private List enabledNames = new ArrayList(50); private List disabledNames = new ArrayList(10); @@ -325,6 +333,12 @@ } pw.println(" " + kid.replace(File.separatorChar, '/') + ""); pw.println(" false"); + if (level != null) { + if (attr == null || attr.getValue("Bundle-SymbolicName") == null) { + throw new BuildException("startlevel specified, but " + module + " is not OSGi bundle!"); + } + pw.println(" " + level + ""); + } pw.println(""); pw.flush(); pw.close(); diff -r 4782c9d6564a nbbuild/templates/common.xml --- a/nbbuild/templates/common.xml Tue Nov 08 12:40:51 2011 +0100 +++ b/nbbuild/templates/common.xml Wed Nov 09 17:37:48 2011 +0100 @@ -249,7 +249,8 @@ - + + @@ -258,7 +259,8 @@ - + + @@ -267,7 +269,8 @@ - + + diff -r 4782c9d6564a nbbuild/test/unit/src/org/netbeans/nbbuild/CreateModuleXMLTest.java --- a/nbbuild/test/unit/src/org/netbeans/nbbuild/CreateModuleXMLTest.java Tue Nov 08 12:40:51 2011 +0100 +++ b/nbbuild/test/unit/src/org/netbeans/nbbuild/CreateModuleXMLTest.java Wed Nov 09 17:37:48 2011 +0100 @@ -124,6 +124,102 @@ assertEquals("Its name reflects the code name of the module", "org-my-module.xml", files[0]); } + + public void testStartLevelFailsForNormalModules() throws Exception { + Manifest m = createManifest (); + m.getMainAttributes().putValue("OpenIDE-Module", "org.my.module"); + File aModule = generateJar(new String[0], m); + + File output = new File(getWorkDir(), "output"); + + java.io.File f = extractString ( + "" + + "" + + " " + + "" + + " " + + " " + + " " + + " " + + " " + + " " + + "" + + "" + ); + try { + execute(f, new String[] { "-verbose" }); + } catch (ExecutionError ex) { + // OK + return; + } + fail("Execution should fail"); + + } + public void testStartLevelOKForBundles() throws Exception { + Manifest m = createManifest (); + m.getMainAttributes().putValue("Bundle-SymbolicName", "org.my.module"); + File aModule = generateJar(new String[0], m); + + File output = new File(getWorkDir(), "output"); + + java.io.File f = extractString ( + "" + + "" + + " " + + "" + + " " + + " " + + " " + + " " + + " " + + " " + + "" + + "" + ); + execute (f, new String[] { "-verbose" }); + + assertTrue ("Output exists", output.exists ()); + assertTrue ("Output directory created", output.isDirectory()); + + File[] files = output.listFiles(); + assertEquals("It one file", 1, files.length); + assertEquals("Its name reflects the code name of the module", "org-my-module.xml", files[0].getName()); + + String content = readFile(files[0]); + assertTrue("startlevel tag expected: " + content, content.contains("\"startlevel\"")); + + } + public void testEmptyStartLevelIsOKForNormalModules() throws Exception { + Manifest m = createManifest (); + m.getMainAttributes().putValue("OpenIDE-Module", "org.my.module"); + File aModule = generateJar(new String[0], m); + + File output = new File(getWorkDir(), "output"); + + java.io.File f = extractString ( + "" + + "" + + " " + + "" + + " " + + " " + + " " + + " " + + " " + + " " + + "" + + "" + ); + execute (f, new String[] { "-verbose" }); + + assertTrue ("Output exists", output.exists ()); + assertTrue ("Output directory created", output.isDirectory()); + + String[] files = output.list(); + assertEquals("It one file", 1, files.length); + assertEquals("Its name reflects the code name of the module", "org-my-module.xml", files[0]); + + } public void testGenerateUpdateTrackingMode() throws Exception { Manifest m = createManifest (); diff -r 4782c9d6564a o.apache.axis/nbproject/project.properties --- a/o.apache.axis/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.apache.axis/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.apache.commons.codec/nbproject/project.properties --- a/o.apache.commons.codec/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.apache.commons.codec/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.apache.commons.discovery/nbproject/project.properties --- a/o.apache.commons.discovery/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.apache.commons.discovery/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.apache.commons.httpclient/nbproject/project.properties --- a/o.apache.commons.httpclient/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.apache.commons.httpclient/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.apache.commons.io/nbproject/project.properties --- a/o.apache.commons.io/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.apache.commons.io/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/commons-io-1.4.jar=modules/org-apache-commons-io.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.apache.commons.lang/nbproject/project.properties --- a/o.apache.commons.lang/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.apache.commons.lang/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.apache.commons.logging/nbproject/project.properties --- a/o.apache.commons.logging/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.apache.commons.logging/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.apache.ws.commons.util/nbproject/project.properties --- a/o.apache.ws.commons.util/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.apache.ws.commons.util/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.apache.xmlrpc/nbproject/project.properties --- a/o.apache.xmlrpc/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.apache.xmlrpc/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.core.contenttype/nbproject/project.properties --- a/o.eclipse.core.contenttype/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.core.contenttype/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.core.contenttype-3.4.100.jar=modules/org-eclipse-core-contenttype.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.core.jobs/nbproject/project.properties --- a/o.eclipse.core.jobs/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.core.jobs/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.core.jobs-3.5.1.jar=modules/org-eclipse-core-jobs.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.core.net/nbproject/project.properties --- a/o.eclipse.core.net/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.core.net/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.core.net-1.2.100.jar=modules/org-eclipse-core-net.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.core.runtime.compatibility.auth/nbproject/project.properties --- a/o.eclipse.core.runtime.compatibility.auth/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.core.runtime.compatibility.auth/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.core.runtime.compatibility.auth-3.2.200.jar=modules/org-eclipse-core-runtime-compatibility-auth.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.core.runtime/nbproject/project.properties --- a/o.eclipse.core.runtime/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.core.runtime/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.core.runtime-3.6.0.jar=modules/org-eclipse-core-runtime.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.equinox.app/nbproject/project.properties --- a/o.eclipse.equinox.app/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.equinox.app/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.equinox.app-1.3.1.jar=modules/org-eclipse-equinox-app.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.equinox.common/nbproject/project.properties --- a/o.eclipse.equinox.common/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.equinox.common/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.equinox.common-3.6.0.jar=modules/org-eclipse-equinox-common.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.equinox.preferences/nbproject/project.properties --- a/o.eclipse.equinox.preferences/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.equinox.preferences/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.equinox.preferences-3.3.0.jar=modules/org-eclipse-equinox-preferences.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.equinox.registry/nbproject/project.properties --- a/o.eclipse.equinox.registry/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.equinox.registry/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.equinox.registry-3.5.0.jar=modules/org-eclipse-equinox-registry.jar is.autoload=true +module.startlevel=3 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.equinox.security/nbproject/project.properties --- a/o.eclipse.equinox.security/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.equinox.security/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.equinox.security-1.0.200.jar=modules/org-eclipse-equinox-security.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.mylyn.bugzilla.core/nbproject/project.properties --- a/o.eclipse.mylyn.bugzilla.core/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.mylyn.bugzilla.core/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.mylyn.bugzilla.core-3.6.0.jar=modules/org-eclipse-mylyn-bugzilla-core.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.mylyn.commons.core/nbproject/project.properties --- a/o.eclipse.mylyn.commons.core/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.mylyn.commons.core/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.mylyn.commons.core-3.6.0.jar=modules/org-eclipse-mylyn-commons-core.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.mylyn.commons.net/nbproject/project.properties --- a/o.eclipse.mylyn.commons.net/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.mylyn.commons.net/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.mylyn.commons.net-3.6.0.jar=modules/org-eclipse-mylyn-commons-net.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.mylyn.commons.soap/nbproject/project.properties --- a/o.eclipse.mylyn.commons.soap/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.mylyn.commons.soap/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.mylyn.commons.soap-3.4.0.jar=modules/org-eclipse-mylyn-commons-soap.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.mylyn.commons.xmlrpc/nbproject/project.properties --- a/o.eclipse.mylyn.commons.xmlrpc/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.mylyn.commons.xmlrpc/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.mylyn.commons.xmlrpc-3.6.0.jar=modules/org-eclipse-mylyn-commons-xmlrpc.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.mylyn.monitor.ui.dummy/nbproject/project.properties --- a/o.eclipse.mylyn.monitor.ui.dummy/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.mylyn.monitor.ui.dummy/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,2 +1,4 @@ is.autoload=true +module.startlevel=4 + nbm.module.author=Tomas Stupka diff -r 4782c9d6564a o.eclipse.mylyn.tasks.core/nbproject/project.properties --- a/o.eclipse.mylyn.tasks.core/nbproject/project.properties Tue Nov 08 12:40:51 2011 +0100 +++ b/o.eclipse.mylyn.tasks.core/nbproject/project.properties Wed Nov 09 17:37:48 2011 +0100 @@ -1,3 +1,4 @@ release.external/org.eclipse.mylyn.tasks.core-3.6.0.jar=modules/org-eclipse-mylyn-tasks-core.jar is.autoload=true +module.startlevel=4 nbm.module.author=Tomas Stupka