Skip to content

Instantly share code, notes, and snippets.

@daemin-hwang
Last active March 5, 2016 12:15
Show Gist options
  • Select an option

  • Save daemin-hwang/0445647f19d668cf76e9 to your computer and use it in GitHub Desktop.

Select an option

Save daemin-hwang/0445647f19d668cf76e9 to your computer and use it in GitHub Desktop.
jetty-maven-plugin 설정 정보
<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