javaee-showcase/Jenkinsfile

12 lines
164 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:26:47 +00:00
"gradlew build".execute().text
2021-01-23 10:17:40 +00:00
}
}
}
}