Use Gradle

This commit is contained in:
Telesphoreo 2022-04-07 00:05:15 -05:00
parent 6a91d6a761
commit 6527e51159
1 changed files with 3 additions and 1 deletions

4
Jenkinsfile vendored
View File

@ -3,7 +3,9 @@ pipeline {
stages {
stage('build') {
steps {
sh './gradlew build javadoc publish --no-daemon'
withGradle {
sh './gradlew build javadoc publish --no-daemon'
}
}
}
}