Created
August 14, 2019 02:23
-
-
Save goyalmohit/3bb94f2568ec903b07012b0130036381 to your computer and use it in GitHub Desktop.
Defining maven task for build stage in azure pipelines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.. | |
- task: Maven@3 | |
inputs: | |
mavenPomFile: 'pom.xml' | |
goals: 'clean package' | |
publishJUnitResults: true | |
testResultsFiles: '**/surefire-reports/TEST-*.xml' | |
javaHomeOption: 'JDKVersion' | |
mavenVersionOption: 'Default' | |
mavenAuthenticateFeed: false | |
effectivePomSkip: false | |
sonarQubeRunAnalysis: false | |
.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment