Advertisement
Guest User

Untitled

a guest
Mar 10th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-maven-plugin</artifactId>
  4. </plugin>
  5. <plugin>
  6. <groupId>org.flywaydb</groupId>
  7. <artifactId>flyway-maven-plugin</artifactId>
  8. <version>4.2.0</version>
  9. <configuration>
  10. <url>jdbc:postgresql://localhost:5432/exam1</url>
  11. <user>postgres</user>
  12. <password>postgres</password>
  13. </configuration>
  14. </plugin>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-compiler-plugin</artifactId>
  18. <configuration>
  19. <source>1.8</source>
  20. <target>1.8</target>
  21. </configuration>
  22. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement