Felipe Hogrefe Bento
Felipe Hogrefe Bento

Reputation: 297

liquibase and jpa buddy using gradle

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

enter image description here

But in my IDE thats all I got:

enter image description here

I'm missing some gradle or liquibse configuration?

Upvotes: 1

Views: 372

Answers (1)

Felipe Hogrefe Bento
Felipe Hogrefe Bento

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

Related Questions