Add Flyway 5 integration for Oracle 12.1 #11
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Nowadays the latest Flyway version is 6.5.5. The last Flyway version that supports Oracle 12.1 is 5.1.4 and hence you can not migrate those old Oracle databases with the Flyway 6 version.
So I have added an artifactId bootique-flyway5 to support the 5.1.4 version. Since the Flyway APIs are not compatible I had to code a few classes differently (and used bootique-flyway test classes from the 1.x version that used Flyway 5.2.0).
That way I can still upgrade Oracle 12.1 databases but I have to use a different dependency: bootique-flyway5 instead of bootique-flyway.
And I added some debugging as well.