javaee-showcase/Jenkinsfile

13 lines
204 B
Groovy

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