You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 28, 2024. It is now read-only.
Caused by: org.gradle.api.InvalidUserDataException: Directory 'C:\Users\...\src\main\resources\db.migration' specified for property '$1' does not exist.
at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.report(ValidatingTaskExecuter.java:64)
I've tried variations on the path by leaving off the initial period and last slash, but I get the same error. Leaving off the last element avoids that error but I presume misses all the migration files. I'm getting a docker error before it gets that far.
I also tried setting it to a file object rather than a string:
java.lang.ClassCastException: java.io.File cannot be cast to java.lang.String
at ch.ayedo.jooqmodelator.gradle.JooqModelatorPlugin$apply$1.execute(JooqModelatorPlugin.kt:95)
Though there doesn't seem to be a line 95 of JooqModelatorPlugin.kt.
I'm using version 3.5.0 and setting the migrationsPaths to the flyway default:
I get this error message:
I've tried variations on the path by leaving off the initial period and last slash, but I get the same error. Leaving off the last element avoids that error but I presume misses all the migration files. I'm getting a docker error before it gets that far.
I also tried setting it to a file object rather than a string:
but this yields
Though there doesn't seem to be a line 95 of JooqModelatorPlugin.kt.