Skip to content
Snippets Groups Projects

Update Java 11 to Java 17

Merged
Chris Lemairerequested to merge
java-17 into development
All threads resolved!

Files

@@ -35,7 +35,7 @@ if [ ! -f "$THIS_FILE" ]; then
@@ -35,7 +35,7 @@ if [ ! -f "$THIS_FILE" ]; then
fi
fi
./gradlew clean
./gradlew clean
./gradlew test --tests "*.MigrationApplicationTest" -i
./gradlew test --tests "*.MigrationApplicationTest" -i -x generateGitProperties
EXIT_CODE=$?
EXIT_CODE=$?
git checkout -
git checkout -
@@ -51,6 +51,6 @@ fi
@@ -51,6 +51,6 @@ fi
# Then run the migration test on current branch, but without loading a new database to see if data transfer is okay
# Then run the migration test on current branch, but without loading a new database to see if data transfer is okay
./gradlew clean
./gradlew clean
./gradlew test --tests "*.NoDbMigrationApplicationTest" -i
./gradlew test --tests "*.NoDbMigrationApplicationTest" -i -x generateGitProperties
exit $?
exit $?
Loading