Advertisement
Guest User

Untitled

a guest
Feb 27th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <dependency>
  2. <groupId>postgresql</groupId>
  3. <artifactId>postgresql</artifactId>
  4. <version>9.1-901-1.jdbc4</version>
  5. </dependency>
  6.  
  7. <plugin>
  8. <groupId>com.googlecode.flyway</groupId>
  9. <artifactId>flyway-maven-plugin</artifactId>
  10. <version>1.7</version>
  11. <configuration>
  12. <driver>org.postgresql.Driver</driver>
  13. <url>jdbc:postgresql://...</url>
  14. <user>...</user>
  15. <password>...</password>
  16. </configuration>
  17. </plugin>
  18.  
  19. <dependency>
  20. <groupId>postgresql</groupId>
  21. <artifactId>postgresql</artifactId>
  22. <version>9.1-902.jdbc4</version>
  23. </dependency>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement