REFLECT-2 Add missing bits

Add undo migration, add Jenkins files, add Java-base migration
This commit is contained in:
Petromir Dzhunev
2020-02-18 17:38:33 +02:00
committed by akuksin
parent 94ebb0bde7
commit 78fd7fb89f
9 changed files with 88 additions and 19 deletions

View 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'
}
}
}
}
}
}