initial commit

This commit is contained in:
2025-10-23 10:57:33 +07:00
commit b39d1a435d
34 changed files with 1353 additions and 0 deletions

33
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,33 @@
pipeline {
agent any
stages {
stage ('Build') {
steps {
sh 'mvn -B -DSkipTests clean package'
}
}
stage ('Test') {
steps {
sh 'mvn test'
}
}
stage ('Capture') {
steps {
archiveArtifacts 'target/*.jar'
junit 'target/surefire-reports/*.xml'
}
post {
always {
cleanWs()
}
success {
echo 'Build Success...'
}
}
}
}
}