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
Describe the bug
I just tested it with native-maven-plugin (0.10.3), but I assume it is the same for the gradle plugin which should be checked.
You can apply configuration tag to executions and for the plugin in general. When applied to the plugin in general there should be a way to disable all goals which implies the tag skip at this level
The goal add-reachability-metadata in this case is not skipped at all.
To Reproduce
Create a project with native-maven-plugin and apply skip to the configuration of the plugin.
Expected behavior
If you apply skip to the root configuration all goals should be disabled. add-reachability-metadata is executed anyway.
Logs
N/A
System Info (please complete the following information):
OS: Mac
GraalVM Version 22.3
Java Version 18
Plugin version native-maven-plugin:0.10.3
Additional context
My suggestion would to have a property for each goal to disable / enable it separately - e.g. <skipAddReachabilityMetaData> / <skipNativeBuild> / ... and one property to disable all at once <skip> at root level configuration tag.
The text was updated successfully, but these errors were encountered:
Describe the bug
I just tested it with native-maven-plugin (0.10.3), but I assume it is the same for the gradle plugin which should be checked.
You can apply
configuration
tag to executions and for the plugin in general. When applied to the plugin in general there should be a way to disable all goals which implies the tagskip
at this levelExample:
The goal
add-reachability-metadata
in this case is not skipped at all.To Reproduce
Create a project with
native-maven-plugin
and applyskip
to theconfiguration
of the plugin.Expected behavior
If you apply
skip
to the rootconfiguration
all goals should be disabled.add-reachability-metadata
is executed anyway.Logs
N/A
System Info (please complete the following information):
Additional context
My suggestion would to have a property for each goal to disable / enable it separately - e.g.
<skipAddReachabilityMetaData>
/<skipNativeBuild>
/ ... and one property to disable all at once<skip>
at root levelconfiguration
tag.The text was updated successfully, but these errors were encountered: