I am using Hibernate 2 + Spring 3 + Liquibase 1.9. I have created my entity classes using Hibernate annotation as normal Now I want to generate the Liquibase change log automatically which should contain the DB CREATE statements. I don't want to manually create the change log XML files as it feels tedious and error prone especially for the first time.
What puzzles me is that there is no maven goal on maven to look at mt entity classes and generate the Liquibase change log in a similar fashion to what hbm2ddl does?
I Googled numerous pages with no avail, they seem to point me to a Liquibase command line and some ANT script, but it should be possible on maven!
So I guess my question is: How to invoke a process to generate Liquibase change log for new entity classes written in JPA annotation?
Thanks