The Source for Java Technology Collaboration
User: Password:



Start New Message Delete Post a Reply

Article: 
 Building Web Applications with Maven 2
Subject:  mvn jetty:run
Date:  2007-09-05 09:59:57
From:  mredjlali
Response to: mvn jetty:run


Please ignore this question since I found the answer:
I changed the port in pom.xml

<build>
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<configuration>
<contextPath>/maven2example_webapp</contextPath>
<connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>9090</port> <maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
</configuration>
</plugin>
</plugins>
</build>

 Feed java.net RSS Feeds