javaee-showcase/Jenkinsfile

14 lines
220 B
Plaintext
Raw Normal View History

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