javaee-showcase/Jenkinsfile

14 lines
198 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:20:51 +00:00
step {
sh("gradlew build")
}
2021-01-23 10:17:40 +00:00
}
}
}
}