I need to know if Liquibase "only" triggers Hibernate's mapping functions.
Let's say I'm working with an application server that can't support Hibernate as JPA-Provider. Entities, Injections, database connectivity, etc. are provided by some other ORM. Now, if I loaded both Hibernate and the Liquibase-Hibernate Plugin via Maven dependency Management and was About to diff my entities with the Schema of the database would that be possible?
Who's actually connecting to the database when diffing, Hibernate or Liquibase?
Thanks!