Last active
March 5, 2016 12:15
-
-
Save daemin-hwang/0445647f19d668cf76e9 to your computer and use it in GitHub Desktop.
jetty-maven-plugin 설정 정보
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <plugin> | |
| <groupId>org.eclipse.jetty</groupId> | |
| <artifactId>jetty-maven-plugin</artifactId> | |
| <version>9.3.7.v20160115</version> | |
| <configuration> | |
| <httpConnector> | |
| <port>8080</port> | |
| <idleTimeout>30000</idleTimeout> | |
| </httpConnector> | |
| <scanIntervalSeconds>10</scanIntervalSeconds> | |
| <webApp> | |
| <contextPath>/</contextPath> | |
| </webApp> | |
| </configuration> | |
| </plugin> | |
| <!-- 참조 링크 : http://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment