Title: [waffle-scm] [685] trunk/examples/pom.xml: Configured jetty maven plugin, which can be used on example webapps via CLI jetty:run.
Revision
685
Author
mauro
Date
2008-06-05 04:14:31 -0500 (Thu, 05 Jun 2008)

Log Message

Configured jetty maven plugin, which can be used on example webapps via CLI jetty:run.

Modified Paths

Diff

Modified: trunk/examples/pom.xml (684 => 685)

--- trunk/examples/pom.xml	2008-05-20 13:34:15 UTC (rev 684)
+++ trunk/examples/pom.xml	2008-06-05 09:14:31 UTC (rev 685)
@@ -115,6 +115,27 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.mortbay.jetty</groupId>
+        <artifactId>maven-jetty-plugin</artifactId>
+        <version>6.1.9</version>
+        <dependencies>
+          <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-servlet_2.5_spec</artifactId>
+            <version>1.2</version>
+          </dependency>
+        </dependencies>
+        <configuration>
+          <connectors>
+            <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+              <port>8080</port>
+              <maxIdleTime>3600000</maxIdleTime>
+            </connector>
+          </connectors>
+          <scanIntervalSeconds>5</scanIntervalSeconds>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <profiles>


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to