Use Gradle

This commit is contained in:
Telesphoreo 2022-04-07 00:05:15 -05:00
parent 6a91d6a761
commit 6527e51159

2
Jenkinsfile vendored
View File

@ -3,10 +3,12 @@ pipeline {
stages { stages {
stage('build') { stage('build') {
steps { steps {
withGradle {
sh './gradlew build javadoc publish --no-daemon' sh './gradlew build javadoc publish --no-daemon'
} }
} }
} }
}
post { post {
always { always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true