I'm using Flyway to do database migrations from within Clojure. The problem I'm having is when I make an uberjar to deploy my application, Flyway can't find the migrations which are within the jar file. It works fine in development, without having the application packaged up. I tried a bunch of different combinations to add the migration sql files to the jar. I've unzipped the jar and all of the migrations are there, I'm not sure what the problem is.
Exception in thread "main" com.googlecode.flyway.core.api.FlywayException: Unable to determine URL for classpath location: db/migration
I'm using flyway version 2.1.1 and right now my migrations are in src/db/migration. I tried adding src/ to resource paths in the project.clj file but it still doesn't find them. Any ideas?