javaee-showcase/Jenkinsfile

12 lines
153 B
Groovy

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