Guest User

Untitled

a guest
Dec 11th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <plugin>
  2. <groupId>org.mortbay.jetty</groupId>
  3. <artifactId>maven-jetty-plugin</artifactId>
  4. <version>6.1.22</version>
  5. <configuration>
  6. <webApp>target/${war.name}</webApp>
  7. <contextPath>/${contextRoot.name}</contextPath>
  8. <scanIntervalSeconds>10</scanIntervalSeconds>
  9. <connectors>
  10. <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
  11. <port>${gwt.port}</port>
  12. <maxIdleTime>60000</maxIdleTime>
  13. </connector>
  14. </connectors>
  15. <daemon>false</daemon>
  16. </configuration>
  17. <!-- automatyczne uruchamianie na czas testów - zakomentowane bo "ręcznie" robimy deploy na Glassfisha -->
  18. <!-- <executions>-->
  19. <!-- <execution>-->
  20. <!-- <id>start-jetty</id>-->
  21. <!-- <phase>pre-integration-test</phase>-->
  22. <!-- <goals>-->
  23. <!-- <goal>run-exploded</goal>-->
  24. <!-- </goals>-->
  25. <!-- </execution>-->
  26. <!-- <execution>-->
  27. <!-- <id>stop-jetty</id>-->
  28. <!-- <phase>post-integration-test</phase>-->
  29. <!-- <goals>-->
  30. <!-- <goal>stop</goal>-->
  31. <!-- </goals>-->
  32. <!-- </execution>-->
  33. <!-- </executions>-->
  34. </plugin>
Add Comment
Please, Sign In to add comment