I have gradle spring-boot project.
I was trying to set the Flyway db migration files to different location using relative path.
flyway:
enabled: true
username: sa
password:
url: jdbc:h2:mem:myDB;MODE=Oracle;DB_CLOSE_DELAY=-1
baseline-on-migrate: true
locations: filesystem:.\..\ITest\resources\db.migration
Still file cannot be found. However when I specify the absolute location. it works.
Absolute path : C:\Projects\myApi\src\ITest\resources\db.migration
As I understood default location would be myApi/main/resources
in the project