test jenkins

This commit is contained in:
2025-10-14 11:24:42 +07:00
parent 653cd71c95
commit 464cbf2664
11 changed files with 111 additions and 96 deletions

11
Jenkinsfile vendored Normal file
View File

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