added jenkins file

This commit is contained in:
unknown 2025-05-23 16:16:55 +05:30
parent 6ded3ac87b
commit 16d2f3ce2a

12
src/Jenkinsfile vendored
View file

@ -0,0 +1,12 @@
pipeline {
agent any
stages {
stage("Build"){
steps {
sh "./mvnw install"
}
}
}
}