Create Jenkinsfile4

This commit is contained in:
dhanunjayaallu123 2023-04-18 18:20:39 +05:30 committed by GitHub
parent 6e71aaa44c
commit 4ccb723599
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
Jenkinsfile4 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'
}
}
}
}