Guest User

Untitled

a guest
Nov 20th, 2016
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <build>
  2. <pluginManagement>
  3. <plugins>
  4. <plugin>
  5. <groupId>org.apache.maven.plugins</groupId>
  6. <artifactId>maven-compiler-plugin</artifactId>
  7. <version>3.2</version>
  8. <configuration>
  9. <verbose>true</verbose>
  10. <source>1.8</source>
  11. <target>1.8</target>
  12. <showWarnings>true</showWarnings>
  13. </configuration>
  14. </plugin>
  15. <plugin>
  16. <groupId>org.apache.tomcat.maven</groupId>
  17. <artifactId>tomcat7-maven-plugin</artifactId>
  18. <version>2.2</version>
  19. <configuration>
  20. <path>/</path>
  21. <contextReloadable>true</contextReloadable>
  22. </configuration>
  23. </plugin>
  24. </plugins>
  25. </pluginManagement>
  26. </build>
  27. </project>
Advertisement
Add Comment
Please, Sign In to add comment