initial commit

This commit is contained in:
2024-03-01 06:05:38 +08:00
commit 46231b3f73
19 changed files with 816 additions and 0 deletions

24
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,24 @@
import java.nio.file.Path
import java.nio.file.Files
pipeline {
agent any
stages {
stage("Build") {
steps {
sh "./gradlew build"
}
}
stage("Publish") {
steps {
sh "./gradlew publish"
}
}
}
post {
always {
cleanWs deleteDirs: true, skipWhenFailed: true
}
}
}