Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.flywaydb</groupId>
  3. <artifactId>flyway-maven-plugin</artifactId>
  4. <version>3.1</version>
  5. <inherited>false</inherited>
  6. <executions>
  7. <execution>
  8. <phase>compile</phase>
  9. <goals>
  10. <goal>migrate</goal>
  11. </goals>
  12. <configuration>
  13. <user>jrm</user>
  14. <password></password>
  15. <driver>com.mysql.jdbc.Driver</driver>
  16. <url>jdbc:mysql://localhost/fooDB?createDatabaseIfNotExist=true</url>
  17. <table>version_history</table>
  18. <locations>
  19. <location>
  20. filesystem:../../scripts/entitlement/db/cd
  21. </location>
  22. </locations>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement