Advertisement
Guest User

Untitled

a guest
Dec 1st, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.flywaydb</groupId>
  3. <artifactId>flyway-maven-plugin</artifactId>
  4. <version>4.0.3</version>
  5. <configuration>
  6. <driver>org.postgresql.Driver</driver>
  7. <url>jdbc:postgresql://localhost:5432/postgres_test</url>
  8. <user>postgres</user>
  9. <password>admin</password>
  10. <locations>
  11. <location>filesystem:/src/main/resources/db_migration</location>
  12. </locations>
  13. </configuration>
  14. <executions>
  15. <execution>
  16. <id>migrate-database</id>
  17. <phase>pre-integration-test</phase>
  18. <goals>
  19. <goal>migrate</goal>
  20. </goals>
  21. </execution>
  22. </executions>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.postgresql</groupId>
  26. <artifactId>postgresql</artifactId>
  27. <version>9.4-1200-jdbc41</version>
  28. </dependency>
  29. </dependencies>
  30. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement