This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to annotated tag maven-launchpad-plugin-2.1.0 in repository https://gitbox.apache.org/repos/asf/sling-maven-launchpad-plugin.git
commit 0a616ceb1767944a25e72fae6eae2e547a893803 Author: Carsten Ziegeler <[email protected]> AuthorDate: Thu Jul 7 16:58:15 2011 +0000 SLING-2124 : Improve support for OSGi installer by distinguishing between bootstrap and app bundles git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/maven/maven-launchpad-plugin@1143920 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/sling/maven/projectsupport/bundlelist/BaseStartLevel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/sling/maven/projectsupport/bundlelist/BaseStartLevel.java b/src/main/java/org/apache/sling/maven/projectsupport/bundlelist/BaseStartLevel.java index e2f08a2..8e541d0 100644 --- a/src/main/java/org/apache/sling/maven/projectsupport/bundlelist/BaseStartLevel.java +++ b/src/main/java/org/apache/sling/maven/projectsupport/bundlelist/BaseStartLevel.java @@ -82,7 +82,7 @@ public abstract class BaseStartLevel { } public String getLevel() { - return String.valueOf(this.startLevel); + return (this.startLevel == -1 ? BOOT_MARKER : String.valueOf(this.startLevel)); } public int getStartLevel() { -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
