initial commit

This commit is contained in:
2023-01-01 10:54:50 +08:00
commit 02bc6a5f88
10 changed files with 547 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage("Publish") {
steps {
sh "./gradlew publish"
}
}
}
}