Flyway does not support Postgres 17, before it was 16 and the same error message occurred, I have changed the dependencies several times and it remains the same. Finally, I installed db 17 and the latest version of the flyway dependency 10.20.1, and it continues to give the same error. I don’t know what to do anymore, anyone to help?
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>10.20.1</version>
</dependency>
I tried changing the dependencies and the database
2
Answers
You’re most likely missing the additional dependency:
Remember to provide the right version.
Replace core dependency with DB specific dependency
If you are using gradle
For Maven users.