Added Jenkinsfile to project with test stage

This commit is contained in:
GD 2020-03-11 18:05:35 -04:00
parent 46a51768ae
commit 5a7104a50d

8
Jenkinsfile vendored
View file

@ -6,5 +6,13 @@ pipeline {
sh './mvnw package' sh './mvnw package'
} }
} }
stage('Test')
{
steps{
sh'./mvn test'
}
}
} }
} }