We would love it if flyway could migrate our database during deployment of an ear artifact. (JBoss 4.2) It should abort if anything goes wrong...

Flyway with maven flyway:migrate works, but for ci and production environment (and maybe others that download new SNAPSHOTS) it would be great to have the db migrations bundled with the application.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

The API is your friend. Integrate it in a component that runs on startup, such as a servlet. Bundle your migrations with the EAR, and you're good to go. In case the migration fails, Flyway will throw an exception which, if left uncaught, will prevent the application from starting.

link|improve this answer
Ok, with a MBean it works :) But we need Issue 129 to be fixed to use Flyway with JTA Transactions. – flob May 24 '11 at 13:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.