blob: fc43c17a739fecacf3b0b8e6328dc49ae20aeb16 [file] [log] [blame]
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.struts2.uelplugin</groupId>
<artifactId>struts2-uel-plugin-example</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>Struts 2 Unified EL Plugin Example</name>
<dependencies>
<dependency>
<groupId>org.apache.struts2.uelplugin</groupId>
<artifactId>struts2-uel-plugin</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
<!-- Uncomment this to run in a < JSP 2.1 jsp engine. -->
<!-- <dependency>
<groupId>de.odysseus.juel</groupId>
<artifactId>juel</artifactId>
<version>2.1.0</version>
</dependency>-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.10</version>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
</configuration>
</plugin>
</plugins>
</build>
</project>