javaee-showcase/Jenkinsfile

12 lines
164 B
Groovy

pipeline {
agent any;
stages {
stage('Build') {
steps {
"gradlew build".execute().text
}
}
}
}