added jenkins

This commit is contained in:
unknown 2025-05-23 16:39:49 +05:30
parent 7aa369204c
commit 972661d6b0

13
Jenkinsfile vendored
View file

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