We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c1d80b commit a494d12Copy full SHA for a494d12
1 file changed
jenkinsfile
@@ -9,17 +9,9 @@ node{
9
}
10
11
stage('Test-Package'){
12
- steps{
13
- echo "Maven test started"
14
- // Get maven home path
15
- def mvnHome = tool name: 'maven', type: 'maven'
16
- sh "${mvnHome}/bin/mvn test"
17
- }
18
- post{
19
- always{
20
- junit '**/target/*-reports/TEST-*.xml'
21
22
+ // Get maven home path
+ def mvnHome = tool name: 'maven', type: 'maven'
+ sh "${mvnHome}/bin/mvn test"
23
24
25
stage('SonarQube Analysis') {
0 commit comments