Added Jenkinsfile

This commit is contained in:
ssairaj 2023-04-07 04:59:36 +00:00
parent afcbe0b390
commit 2c361fa9f1

11
Jenkinsfile vendored
View file

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('build') {
steps {
sh 'mvn clean package'
}
}
}
}