Skip the execution of the maven plugin #509
ovidiucracea
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Many plugins (e.g springdoc-openapi-maven-plugin ) have the execution configurable to enable the conditional execution.
Example:
<execution> <id>test-support</id> <phase>generate-test-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <skip>${skipProperty}</skip> </configuration> </execution>
I believe it would be a good addition to the mvn plugin to be able to skip the execution based on a flag like
<skip>${skipProperty}</skip>
Beta Was this translation helpful? Give feedback.
All reactions