Example of using the WIP Screen handler API

This commit is contained in:
modmuss50 2020-05-25 12:55:08 +01:00
parent e1858aca8b
commit 3e2753affb
3 changed files with 61 additions and 45 deletions

23
Jenkinsfile vendored
View file

@ -1,23 +0,0 @@
pipeline {
agent any
stages {
stage('Init') {
steps {
sh "rm -rf build/libs/"
sh "chmod +x gradlew"
}
}
stage ('Build') {
when {
branch '1.16'
}
steps {
sh "./gradlew clean build publish curseTools --refresh-dependencies --stacktrace"
archiveArtifacts artifacts: '**/build/libs/*.jar', fingerprint: true
}
}
}
}