-
Bug
-
Resolution: Unresolved
-
Minor
-
Any
I started using the plugin, and in the FAQ it says that there is no way to avoid
[WARNING] Picked up JAVA_TOOL_OPTIONS: -Dmaven.ext.class.path="/path/to/workspace/...@tmp/withMaven.../pipeline-maven-spy.jar" -Dorg.jenkinsci.plugins.pipeline.maven.reportsFolder="/path/to/workspace/...@tmp"
message.
However, this results in red-colored messages all over the place.
I have an idea on how to avoid this: introduce an option to put
-Dmaven.ext.class.path=".../pipeline-maven-spy.jar" -Dorg.jenkinsci.plugins.pipeline.maven.reportsFolder="..."
arguments into MAVEN_OPTS (optionally) instead of JAVA_TOOL_OPTIONS
Something like
withMaven(dontUseToolsOptions: true) { ... }
This way, these messages can be avoided, and the release plugin functionality can be preserved.
Currently, I am using something like this to avoid this issue, but it's cumbersome and not scalable:
withMaven {
sh """
export MAVEN_OPTS="\$MAVEN_OPTS $JAVA_TOOL_OPTIONS"
unset JAVA_TOOL_OPTIONS
mvn verify \$(eval echo \$MAVEN_ADD_OPTIONS)
"""
}