3

I am very new using liquibase.

I have a JSP web application (no framework used), and I use a mysql db schema for testing and other one for developing.

I want to know how can I configure liquibase maven plugin to update both DB's on building time.

nashuald
  • 805
  • 3
  • 14
  • 31
  • 1
    See: http://stackoverflow.com/questions/9606585/liquibase-using-maven-with-two-databases-does-not-work/9609848#9609848 – Mark O'Connor Jan 28 '14 at 21:17

1 Answers1

4

You should use the context attribute for this sort of things. More details here http://www.liquibase.org/documentation/contexts.html

To update both DBs, the maven commands would look like the following:

mvn liquibase:update -Dliquibase.contexts=dev

mvn liquibase:update -Dliquibase.contexts=test
Taoufik Mohdit
  • 1,910
  • 3
  • 26
  • 39