Update Jenkinsfile

This commit is contained in:
KevinHTrinh 2020-03-16 01:33:17 -04:00 committed by GitHub
parent 69466280e0
commit fccd7c72ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
Jenkinsfile vendored
View file

@ -1,10 +1,13 @@
pipeline { pipeline {
agent any agent any
tools {
maven 'Maven 3.6.3'
jdk 'Java 9.0.4'
}
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh 'mvn clean' sh 'mvn clean install'
} }
} }
stage('Test') { stage('Test') {