In liquibase-core-3.6.2-sources.jar!/liquibase/integration/spring/SpringLiquibase.java:533 It will be resolved with this prefix after classpath:/ so instead of
database/changesets/
I'll have
out/production/resources/database/changesets
Which caused reapplying everything once again and fail on restrictions. Is it somehow possible save only 'relative' part of the path? Like liquidbase know about 'changesets' dir and can start to save migration files from this point but not by full path in the project?
Liquibase tends to distinct files by full path in a project which causes a problem if build path is different for example IntelliJ add
when it runs in DEBUG. Which cause different path and recognized as 'new' changesets all dynamically included files
In liquibase-core-3.6.2-sources.jar!/liquibase/integration/spring/SpringLiquibase.java:533 It will be resolved with this prefix after classpath:/ so instead of
I'll have
Which caused reapplying everything once again and fail on restrictions. Is it somehow possible save only 'relative' part of the path? Like liquidbase know about 'changesets' dir and can start to save migration files from this point but not by full path in the project?