We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the sample pom is like this
<plugin> <groupId>com.github.ekryd.sortpom</groupId> <artifactId>sortpom-maven-plugin</artifactId> <executions> <execution> <id>validate-sortpom-sort</id> <phase>validate</phase> <goals> <goal>sort</goal> </goals> </execution> <execution> <id>verify-sortpom-sort</id> <phase>verify</phase> <goals> <goal>verify</goal> </goals> </execution> </executions> </plugin>
The output is is not right. The second validate should be verify.
validate
verify
[INFO] --- buildplan:2.2.2:list (default-cli) @ --- ... -------------------------------------------------------------------------------------------------- PHASE | PLUGIN | VERSION | GOAL | EXECUTION ID -------------------------------------------------------------------------------------------------- validate | sortpom-maven-plugin | 3.0.1 | sort | validate-sortpom-sort ... validate | sortpom-maven-plugin | 3.0.1 | verify | verify-sortpom-sort ...
The plugin got the defaultPhase in plugin, not the binding-phase in POM.
defaultPhase
run list-phase shows as bellow which I think is correct:
list-phase
[INFO] --- buildplan:2.2.2:list-phase (default-cli) @ ... --- validate ------------------------------------------------------------------ + sortpom-maven-plugin | sort | validate-sortpom-sort ....... verify -------------------------------------------------------------------- + sortpom-maven-plugin | verify | verify-sortpom-sort
The text was updated successfully, but these errors were encountered:
fix: show execution lifecycle phase
90843f8
Fix mojohaus#190
4140d03
87b3ae6
25a3765
Successfully merging a pull request may close this issue.
the sample pom is like this
The output is is not right.
The second
validate
should beverify
.The plugin got the
defaultPhase
in plugin, not the binding-phase in POM.run
list-phase
shows as bellow which I think is correct:The text was updated successfully, but these errors were encountered: