Skip to content

Commit

Permalink
use port 9090 for embedded jetty
Browse files Browse the repository at this point in the history
  • Loading branch information
mojavelinux committed Nov 9, 2009
1 parent e7cc56f commit c15cdf1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions wicket/numberguess/pom.xml
Expand Up @@ -83,6 +83,12 @@
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<configuration>
<connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>${jetty.http.port}</port>
<maxIdleTime>3600000</maxIdleTime>
</connector>
</connectors>
<overrideWebXml>src/main/webapp/WEB-INF/jetty-additions-to-web.xml</overrideWebXml>
</configuration>
</plugin>
Expand Down Expand Up @@ -164,5 +170,8 @@
</profile>
</profiles>

<properties>
<jetty.http.port>9090</jetty.http.port>
</properties>

</project>

0 comments on commit c15cdf1

Please sign in to comment.