Created Jenkinsfile with Maven Install Stage

This commit is contained in:
mMate89 2023-05-04 12:40:10 +02:00
parent da89e3a3f6
commit 029ff0b4f4

16
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,16 @@
pipeline {
stages {
stage('Maven install') {
agent {
docker {
image 'maven:3.5.0'
}
}
steps {
sh 'mvn clean install'
}
}
}
}