Added Jenkinsfile

This commit is contained in:
yraji07 2023-03-03 14:56:43 +05:30
parent 635b0a9755
commit 308e67eb4b

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
pipeline {
agent { label 'SPC'}
stages {
stage(Build) {
steps {
sh 'mvn --version'
sh 'mvn package'
}
}
}
}