Guest User

Untitled

a guest
Feb 14th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. <build>
  2. <finalName>liquibase-helloworld-demo</finalName>
  3. <plugins>
  4. <plugin>
  5. <groupId>org.liquibase</groupId>
  6. <artifactId>liquibase-maven-plugin</artifactId>
  7. <version>3.5.3</version>
  8. <executions>
  9. <execution>
  10. <id>id1</id>
  11. <phase>process-resources</phase>
  12. <configuration>
  13. <changeLogFile>
  14. ${basedir}/src/main/resources/liquibase/propco-v3-db-structure.changelog.xml
  15. </changeLogFile>
  16. <driver>com.mysql.jdbc.Driver</driver>
  17. <url>jdbc:mysql://localhost:3306/liquibase-test</url>
  18. <username>root</username>
  19. <password>root</password>
  20. </configuration>
  21. <goals>
  22. <goal>update</goal>
  23. </goals>
  24. </execution>
  25. <execution>
  26. <id>id2</id>
  27. <phase>process-resources</phase>
  28. <configuration>
  29. <changeLogFile>
  30. ${basedir}/src/main/resources/liquibase/propco-v3-db-structure.changelog.xml
  31. </changeLogFile>
  32. <driver>com.mysql.jdbc.Driver</driver>
  33. <url>jdbc:mysql://localhost:3306/liquibase-test</url>
  34. <username>root</username>
  35. <password>root</password>
  36. </configuration>
  37. <goals>
  38. <goal>update</goal>
  39. </goals>
  40. </execution>
  41. </executions>
  42. <dependencies>
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. <version>5.1.9</version>
  47. </dependency>
  48. </dependencies>
  49. </plugin>
  50. </plugins>
  51. </build>
Add Comment
Please, Sign In to add comment