javaee-showcase/Jenkinsfile

14 lines
198 B
Groovy

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