josecaldev
josecaldev

Reputation: 21

Liquibase failed to start because no changelog could be found at:

I have a basic Rest program in which I'm using Liquibase. Was about to run it and this appears on the run: enter image description here

Not pretty sure on what to do to solve it

Upvotes: 0

Views: 432

Answers (1)

bhushan
bhushan

Reputation: 65

Assuming this is a spring boot application, the default path for liquibase change log file can be overriden in application.yml file, following is one such example -

spring: liquibase: change-log: classpath:/liquibase/changelog-master.xml

Upvotes: 2

Related Questions