3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-09-08 20:43:04 +02:00

Manually define Gradle

Dieser Commit ist enthalten in:
DoctorMacc 2020-10-07 20:28:43 -04:00
Ursprung f99cbfa231
Commit 293f691d39

Datei anzeigen

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