I would like to introduce liquibase to my project and first of all I would like to generate a changelog file according my hibernate entities.
What I have so far:
If you want to generate changelog starting with your hibernate entities you can use
mvn liquibase:diff
first you need to add dialect to your referenceUrl (missing in your configuration)
<referenceUrl>hibernate:spring:ch.hemisoft.immo.domain?hibernate.physical_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy&dialect=org.hibernate.dialect.H2Dialect</referenceUrl>