Reputation: 297
I'm trying to use JPA Buddy to generate changelogs from my entities.
In this answer I can see the Liquibase option: https://stackoverflow.com/a/66516541/6047129
But in my IDE thats all I got:
I'm missing some gradle or liquibse configuration?
Upvotes: 1
Views: 372
Reputation: 297
Ok, I had liquibase dependency declared as:
liquibaseRuntime 'org.liquibase:liquibase-core:4.11.0'
As JPA Buddy scans the project dependencies for possible integrations, I needed to change the liquibase dependency to:
implementation 'org.liquibase:liquibase-core:4.11.0'
Upvotes: 2