Add initial Jenkinsfile

This commit is contained in:
2025-07-16 15:14:51 +08:00
parent 5df805cca7
commit 03e4161c98
Vendored
+15
View File
@@ -0,0 +1,15 @@
pipeline {
agent {
docker {
image 'maven:3-alpine'
args '-v /root/.m2:/root/.m2'
}
}
stages {
stage('Build') {
steps {
sh 'mvn -B -DskipTests clean package'
}
}
}
}