Manually define Gradle

This commit is contained in:
DoctorMacc 2020-10-07 20:28:43 -04:00
parent f99cbfa231
commit 293f691d39
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
pipeline {
agent any
tools {
gradle 'Gradle 6'
jdk 'Java 8'
}
options {
@ -9,7 +10,7 @@ pipeline {
stages {
stage ('Build') {
steps {
sh './gradlew clean build'
sh 'gradle clean build'
}
post {
success {