javaee-showcase/Jenkinsfile

18 lines
336 B
Groovy

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