javaee-showcase/Jenkinsfile

14 lines
220 B
Groovy

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