Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. plugins {
  2. id "org.flywaydb.flyway" version "5.2.4"
  3. }
  4.  
  5. if (!project.hasProperty("flywayUrl")) {
  6. ext.flywayUrl="jdbc:postgresql://localhost:5432/drier_moscow"
  7. }
  8.  
  9. flyway {
  10. driver = "org.postgresql.Driver"
  11. url = "$flywayUrl"
  12. user = "gat_drier"
  13. password = "gat_drier"
  14. locations = ['classpath:db/migrations']
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement