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/10/23 09:16:50 UTC

karaf git commit: [KARAF-4029] change the AssemblyMojo default phase to PACKAGE so that it can refer the artifacts which is built by the project itself locally

Repository: karaf
Updated Branches:
  refs/heads/master 7a8924cc3 -> de25865cf


[KARAF-4029] change the AssemblyMojo default phase to PACKAGE so that it can refer the artifacts which is built by the project itself locally


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

Branch: refs/heads/master
Commit: de25865cfd40c6c8cfc607d95e1232c0f6b8ed1e
Parents: 7a8924c
Author: Freeman Fang <fr...@gmail.com>
Authored: Fri Oct 23 15:16:34 2015 +0800
Committer: Freeman Fang <fr...@gmail.com>
Committed: Fri Oct 23 15:16:34 2015 +0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/karaf/tooling/AssemblyMojo.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/de25865c/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/AssemblyMojo.java
----------------------------------------------------------------------
diff --git a/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/AssemblyMojo.java b/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/AssemblyMojo.java
index 79f5f4c..1b90322 100644
--- a/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/AssemblyMojo.java
+++ b/tooling/karaf-maven-plugin/src/main/java/org/apache/karaf/tooling/AssemblyMojo.java
@@ -39,7 +39,7 @@ import java.util.List;
 /**
  * Installs kar dependencies into a server-under-construction in target/assembly
  */
-@Mojo(name = "assembly", defaultPhase = LifecyclePhase.PROCESS_RESOURCES, requiresDependencyResolution = ResolutionScope.RUNTIME)
+@Mojo(name = "assembly", defaultPhase = LifecyclePhase.PACKAGE, requiresDependencyResolution = ResolutionScope.RUNTIME)
 public class AssemblyMojo extends MojoSupport {
 
     /**