REFLECT-2 Add missing bits
Add undo migration, add Jenkins files, add Java-base migration
This commit is contained in:
committed by
akuksin
parent
94ebb0bde7
commit
78fd7fb89f
19
spring-boot/data-migration/flyway/Jenkinsfile-build
Normal file
19
spring-boot/data-migration/flyway/Jenkinsfile-build
Normal file
@@ -0,0 +1,19 @@
|
||||
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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user