Advertisement
eventhelawn

Untitled

Nov 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <plugins>
  2. <plugin>
  3. <groupId>org.apache.tomcat.maven</groupId>
  4. <artifactId>tomcat7-maven-plugin</artifactId>
  5. <version>2.2</version>
  6. <configuration>
  7. <path>/</path>
  8. <server>tomcat-development-server</server>
  9. <port>9966</port>
  10. <uriEncoding>UTF-8</uriEncoding>
  11. <!--<httpsPort>8443</httpsPort>-->
  12. <connectorHttpProtocol>HTTP/1.1</connectorHttpProtocol>
  13. <extraResources>
  14. <extraResource>
  15. <directory>/resources</directory>
  16. <includes>
  17. <include>log4j.propreties</include>
  18. </includes>
  19. </extraResource>
  20. </extraResources>
  21. </configuration>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.postgresql</groupId>
  25. <artifactId>postgresql</artifactId>
  26. <version>9.4-1200-jdbc41</version>
  27. </dependency>
  28. </dependencies>
  29. </plugin>
  30. </plugins>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement