Files
getting-started/spring-boot/data-migration/flyway/Jenkinsfile-build
Petromir Dzhunev 78fd7fb89f REFLECT-2 Add missing bits
Add undo migration, add Jenkins files, add Java-base migration
2020-04-22 22:41:47 +02:00

19 lines
286 B
Plaintext

pipeline {
agent any
stages {
checkout scm
stage('Gradle Build') {
steps {
script {
if (isUnix()) {
sh './gradlew clean build --info'
} else {
bat 'gradlew.bat clean build --info'
}
}
}
}
}
}