Skip to content

Commit

Permalink
switches to mvn verify
Browse files Browse the repository at this point in the history
  • Loading branch information
robfrank committed May 16, 2020
1 parent 6b9cfe0 commit 18916a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
java-version: 14

- name: Build with Maven
run: mvn clean install --file pom.xml
run: mvn verify --file pom.xml
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ node {
stage('build') {
try {
ansiColor('xterm') {
sh "./mvnw clean install -fae"
sh "./mvnw verify -fae"
}
} catch (err) {
throw err
Expand All @@ -34,4 +34,4 @@ node {

}
}
}
}

0 comments on commit 18916a6

Please sign in to comment.