javaee-showcase/Jenkinsfile

13 lines
204 B
Plaintext
Raw Normal View History

2021-01-23 10:17:40 +00:00
pipeline {
agent any;
stages {
stage('Build') {
steps {
def proc = "gradlew build".execute()
println proc.text
}
}
}
}