javaee-showcase/Jenkinsfile

18 lines
361 B
Groovy

pipeline {
agent any;
stages {
stage('Build') {
steps {
script {
if (!isUnix()) {
bat('gradlew --no-daemon build')
} else {
sh('gradlew --no-daemon build')
}
}
}
}
}
}