Author: lukaszlenart Date: Thu Dec 12 21:38:48 2013 New Revision: 1550539 URL: http://svn.apache.org/r1550539 Log: Adds jetty plugin to simplify debugging
Modified: struts/sandbox/trunk/struts2examples/themes/pom.xml Modified: struts/sandbox/trunk/struts2examples/themes/pom.xml URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2examples/themes/pom.xml?rev=1550539&r1=1550538&r2=1550539&view=diff ============================================================================== --- struts/sandbox/trunk/struts2examples/themes/pom.xml (original) +++ struts/sandbox/trunk/struts2examples/themes/pom.xml Thu Dec 12 21:38:48 2013 @@ -1,23 +1,42 @@ <?xml version="1.0"?> -<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> - <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>struts.apache.org</groupId> - <artifactId>struts2examples</artifactId> - <version>1.0.0</version> - </parent> - - <artifactId>themes</artifactId> - - <name>Struts 2 Themes</name> - - <description>Struts 2 themes example application for the - Struts 2 getting started tutorials</description> - <packaging>war</packaging> - <build> - <finalName>themes</finalName> - </build> +<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" + xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>struts.apache.org</groupId> + <artifactId>struts2examples</artifactId> + <version>1.0.0</version> + </parent> + <artifactId>themes</artifactId> + + <name>Struts 2 Themes</name> + + <description>Struts 2 themes example application for the + Struts 2 getting started tutorials + </description> + + <packaging>war</packaging> + + <build> + <finalName>themes</finalName> + <plugins> + <plugin> + <groupId>org.mortbay.jetty</groupId> + <artifactId>jetty-maven-plugin</artifactId> + <version>8.1.7.v20120910</version> + <configuration> + <stopKey>CTRL+C</stopKey> + <stopPort>8999</stopPort> + <scanIntervalSeconds>10</scanIntervalSeconds> + <scanTargets> + <scanTarget>src/main/webapp/WEB-INF/web.xml</scanTarget> + </scanTargets> + </configuration> + </plugin> + </plugins> + + </build> </project>