Fix builds for new CI

This commit is contained in:
rtm516 2021-01-07 09:56:06 +00:00 committed by GitHub
parent 80c9f47645
commit be8329722e
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 --refresh-dependencies'
sh 'gradle clean build --refresh-dependencies'
}
post {
success {