This commit is contained in:
2022-04-06 23:14:44 -05:00
parent ea862e152f
commit ca18b12164
2 changed files with 34 additions and 10 deletions

16
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent any
stages {
stage('build') {
steps {
sh './gradlew build javadoc publish --no-daemon'
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
deleteWs()
}
}
}