Update Jenkinsfile

This commit is contained in:
gjraju1304 2023-12-10 11:31:23 +05:30 committed by GitHub
parent 75be0db198
commit eacd09a377
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -8,7 +8,9 @@ pipeline {
}
stage ('Build') {
steps {
tool name: 'Maven-3.9.5', type: 'maven'
tools {
maven 'Maven-3.9.5'
}
sh "mvn clean install"
}
}