You are viewing a plain text version of this content. The canonical link for it is here.
Posted to portalapps-dev@portals.apache.org by wo...@apache.org on 2014/07/09 03:48:37 UTC

svn commit: r1608982 - /portals/applications/webcontent/trunk/war/pom.xml

Author: woonsan
Date: Wed Jul  9 01:48:36 2014
New Revision: 1608982

URL: http://svn.apache.org/r1608982
Log:
APA-63: adding jetty plugin for easier testing:
cd war
mvn jetty:run
visit http://localhost:8080/webcontent/rproxy/...

Modified:
    portals/applications/webcontent/trunk/war/pom.xml

Modified: portals/applications/webcontent/trunk/war/pom.xml
URL: http://svn.apache.org/viewvc/portals/applications/webcontent/trunk/war/pom.xml?rev=1608982&r1=1608981&r2=1608982&view=diff
==============================================================================
--- portals/applications/webcontent/trunk/war/pom.xml (original)
+++ portals/applications/webcontent/trunk/war/pom.xml Wed Jul  9 01:48:36 2014
@@ -95,6 +95,21 @@
           </execution>
         </executions>
       </plugin>
+      <plugin>
+        <groupId>org.mortbay.jetty</groupId>
+        <artifactId>maven-jetty-plugin</artifactId>
+        <version>6.1.10</version>
+        <configuration>
+          <scanIntervalSeconds>10</scanIntervalSeconds>
+          <contextPath>/webcontent</contextPath>
+          <systemProperties>
+            <systemProperty>
+              <name>org.apache.portals.logdir</name>
+              <value>target</value>
+            </systemProperty>
+          </systemProperties>
+        </configuration>
+      </plugin>
     </plugins>
 
   </build>