I wonder if anyone could help me finding out why I am unable to get liquibase running automatically on JBoss upon deployment? The example code below generates an “ear” and i think it should update the in memory database of jboss, but it does not. https://github.com/nagper/liquibase-cdi The relevant log what i am getting from jboss is: 22:57:02,463 INFO [com.example.LiquibaseCdiIntegration] (ServerService Thread Pool – 74) LiquibaseCdiIntegration bean initialized 22:57:02,464 INFO [com.example.LiquibaseCdiIntegration] (ServerService Thread Pool – 74) Creating Liquibase config 22:57:02,465 INFO [com.example.LiquibaseCdiIntegration] (ServerService Thread Pool – 74) Liquibase changelog set to: db.xml 22:57:02,466 INFO [com.example.LiquibaseCdiIntegration] (ServerService Thread Pool – 74) Liquibase config created: liquibase.integration.cdi.CDILiquibaseConfig@698f5b96 … but nothing more liquibase related So the bean seems to be initialized, but nothing happens with the actual changelog file (db.xml) Thanks in advance! Continue reading...