You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many Maven modules support the skip-parameter in the "configuration" section (build > plugins > plugin > configuration > skip). This is very useful if you don't want to execute the module with every build.
Using the skip-parameter doesn't require a separate profile-configuration do skip a single module.
It would be useful if the plugin would support the skip boolean in it's configuration:
If skip = false: execute the module.
If skip = true: skip the execution of the module.
Example configuration in pom.xml:
The text was updated successfully, but these errors were encountered:
Many Maven modules support the skip-parameter in the "configuration" section (build > plugins > plugin > configuration > skip). This is very useful if you don't want to execute the module with every build.
Using the skip-parameter doesn't require a separate profile-configuration do skip a single module.
It would be useful if the plugin would support the skip boolean in it's configuration:
If skip = false: execute the module.
If skip = true: skip the execution of the module.
Example configuration in pom.xml:
The text was updated successfully, but these errors were encountered: