You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by ff...@apache.org on 2015/04/16 05:57:55 UTC

karaf git commit: [KARAF-3611]karaf-maven-plugin fails for startupFeatures + wrap:

Repository: karaf
Updated Branches:
  refs/heads/karaf-3.0.x 32bd4ad84 -> ecd127492


[KARAF-3611]karaf-maven-plugin fails for startupFeatures + wrap:


Project: http://git-wip-us.apache.org/repos/asf/karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/ecd12749
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/ecd12749
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/ecd12749

Branch: refs/heads/karaf-3.0.x
Commit: ecd1274929a93fd13259ad2c208da38bd2661450
Parents: 32bd4ad
Author: Freeman Fang <fr...@gmail.com>
Authored: Thu Apr 16 11:57:36 2015 +0800
Committer: Freeman Fang <fr...@gmail.com>
Committed: Thu Apr 16 11:57:36 2015 +0800

----------------------------------------------------------------------
 .../java/org/apache/karaf/tooling/features/InstallKarsMojo.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/ecd12749/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/features/InstallKarsMojo.java
----------------------------------------------------------------------
diff --git a/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/features/InstallKarsMojo.java b/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/features/InstallKarsMojo.java
index 7c4c1aa..141428e 100644
--- a/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/features/InstallKarsMojo.java
+++ b/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/features/InstallKarsMojo.java
@@ -289,7 +289,7 @@ public class InstallKarsMojo extends MojoSupport {
 
 
         // install bundles defined in startup.properties
-        getLog().info("Installing bundles defined in startup.properties in the system");
+        /*getLog().info("Installing bundles defined in startup.properties in the system");
         Set<?> startupBundles = startupProperties.keySet();
         for (Object startupBundle : startupBundles) {
             String bundlePath = this.dependencyHelper.pathFromMaven((String) startupBundle);
@@ -299,7 +299,7 @@ public class InstallKarsMojo extends MojoSupport {
                 bundleFile.getParentFile().mkdirs();
                 copy(bundleSource, bundleFile);
             }
-        }
+        }*/
 
         // generate the startup.properties file
         getLog().info("Generating the startup.properties file");