supports jenkinsfile with maven

This commit is contained in:
sukrucakmak 2023-03-20 00:01:39 +03:00
parent 73ed6365ff
commit c5ead47202

15
Jenkinsfile vendored Normal file
View file

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