You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by mr...@apache.org on 2006/12/06 10:26:02 UTC

svn commit: r482982 - /jackrabbit/trunk/jackrabbit-webapp/pom.xml

Author: mreutegg
Date: Wed Dec  6 01:26:01 2006
New Revision: 482982

URL: http://svn.apache.org/viewvc?view=rev&rev=482982
Log:
Add support for testing with maven jetty plugin

Modified:
    jackrabbit/trunk/jackrabbit-webapp/pom.xml

Modified: jackrabbit/trunk/jackrabbit-webapp/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-webapp/pom.xml?view=diff&rev=482982&r1=482981&r2=482982
==============================================================================
--- jackrabbit/trunk/jackrabbit-webapp/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-webapp/pom.xml Wed Dec  6 01:26:01 2006
@@ -71,4 +71,22 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+         <groupId>org.mortbay.jetty</groupId>
+         <artifactId>maven-jetty-plugin</artifactId>
+         <configuration>
+           <scanIntervalSeconds>10</scanIntervalSeconds>
+           <connectors>
+             <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+               <port>8080</port>
+               <maxIdleTime>60000</maxIdleTime>
+             </connector>
+           </connectors>
+         </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>