This is an automated email from the ASF dual-hosted git repository.
cziegeler pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new 36240c2 Correct phase for analysis mojo
36240c2 is described below
commit 36240c299a2039eb602a7eca830f126446ae0a16
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Fri Nov 16 13:52:13 2018 +0100
Correct phase for analysis mojo
---
.../java/org/apache/sling/feature/maven/mojos/AnalyseFeaturesMojo.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/sling/feature/maven/mojos/AnalyseFeaturesMojo.java
b/src/main/java/org/apache/sling/feature/maven/mojos/AnalyseFeaturesMojo.java
index 4812488..34f87ab 100644
---
a/src/main/java/org/apache/sling/feature/maven/mojos/AnalyseFeaturesMojo.java
+++
b/src/main/java/org/apache/sling/feature/maven/mojos/AnalyseFeaturesMojo.java
@@ -42,7 +42,7 @@ import org.apache.sling.feature.scanner.Scanner;
* Analyse the feature.
*/
@Mojo(name = "analyse-features",
- defaultPhase = LifecyclePhase.VALIDATE,
+ defaultPhase = LifecyclePhase.VERIFY,
requiresDependencyResolution = ResolutionScope.TEST,
threadSafe = true
)