javaee-showcase/Jenkinsfile

12 lines
153 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:21:51 +00:00
sh("gradlew build")
2021-01-23 10:17:40 +00:00
}
}
}
}