Flyway not finding my sql migrations in db/migration
Don't forget to call compile first, to make sure the resources are copied over.
in my case this error was caused as package with name db.migration
was created
instead of db
-> migration
In my case I had to explicitely set
flyway.locations=classpath:db/migration
in my application.properties (Spring Boot) for it to work.