Reputation: 413
I'm trying to figure out how the project works. It uses Liquibase:
The problem is that the .yaml file is not in the classpath folder so it's not accessible. Error:
How to let Spring Boot know where is the change-log?
Upvotes: 0
Views: 2273
Reputation: 86
Use property name as
spring.liquibase.changeLog
not
liquibase.changeLog
Upvotes: 1