Guest User

Untitled

a guest
Oct 16th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.liquibase</groupId>
  3. <artifactId>liquibase-maven-plugin</artifactId>
  4. <version>3.0.5</version>
  5. <configuration>
  6. <propertyFile>src/main/resources/liquibase/liquibase.properties</propertyFile>
  7. </configuration>
  8. <executions>
  9. <execution>
  10. <phase>process-resources</phase>
  11. <goals>
  12. <goal>update</goal>
  13. </goals>
  14. </execution>
  15. </executions>
  16. </plugin>
  17.  
  18. changeLogFile=src/main/resources/liquibase/db.changelog.xml
  19. driver=org.postgresql.Driver
  20. dropFirst=false
  21. url=jdbc:postgresql://localhost:5432/auth?createDatabaseIfNotExist=true
  22. username=postgres
  23. password=root
Add Comment
Please, Sign In to add comment