1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/documentation/docs/steps/mavenExecute.md

50 lines
1.6 KiB
Markdown
Raw Normal View History

2019-04-01 11:22:28 +02:00
# ${docGenStepName}
2019-04-01 11:22:28 +02:00
## ${docGenDescription}
2019-04-01 11:22:28 +02:00
## ${docGenParameters}
!!! note "Breaking change in `goals`, `defines` and `flags` parameters"
The `goals`, `defines` and `flags` parameters of the step need to be lists of strings with each element being one item.
As an example consider this diff, showing the old api deleted and the new api inserted:
```diff
-goals: 'org.apache.maven.plugins:maven-help-plugin:3.1.0:evaluate',
-defines: "-Dexpression=$pomPathExpression -DforceStdout -q",
+goals: ['org.apache.maven.plugins:maven-help-plugin:3.1.0:evaluate'],
+defines: ["-Dexpression=$pomPathExpression", "-DforceStdout", "-q"],
```
Additionally please note that in the parameters _must not_ be [shell quoted/escaped](https://www.tldp.org/LDP/Bash-Beginners-Guide/html/sect_03_03.html).
What you pass in is literally passed to Maven without any shell interpreter in between.
The old behavior is still available in version `v1.23.0` and before of project "Piper".
2019-04-01 11:22:28 +02:00
## ${docGenConfiguration}
## ${docJenkinsPluginDependencies}
2019-05-24 15:41:49 +02:00
## Exceptions
None
## Example
```groovy
mavenExecute script: this, goals: ['clean', 'install']
```
Example for the correct usage of `goals`, `defines` and `flags` in version `v1.24.0` and newer:
```groovy
mavenExecute(
script: script,
goals: ['org.apache.maven.plugins:maven-help-plugin:3.1.0:evaluate'],
defines: ["-Dexpression=$pomPathExpression", "-DforceStdout", "-q"],
returnStdout: true
)
```
Note that it does not work to put multiple arguments into one element of a list, so `defines: ["-Dexpression=$pomPathExpression -DforceStdout -q"]` does **not** work.