spring-web-modules/Jenkinsfile

20 lines
315 B
Plaintext
Raw Normal View History

2022-09-03 12:15:53 +07:00
pipeline {
agent any
triggers {
pollSCM '* * * * *'
}
stages {
stage('Build') {
steps {
sh './gradlew assemble'
}
}
stage('BootJar') {
steps {
sh './gradlew bootJar'
}
}
}
}