| <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> |
| <parent> |
| <groupId>org.apache.struts</groupId> |
| <artifactId>struts2-plugins</artifactId> |
| <version>2.2.0-SNAPSHOT</version> |
| </parent> |
| <groupId>org.apache.struts</groupId> |
| <artifactId>struts2-uel-plugin</artifactId> |
| <packaging>jar</packaging> |
| <name>Struts 2 Unified EL Plugin</name> |
| <version>1.0.0-SNAPSHOT</version> |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <configuration> |
| <source>1.5</source> |
| <target>1.5</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>attach-source</id> |
| <goals> |
| <goal>jar</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| <scm> |
| <connection> |
| scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2-uel-plugin |
| </connection> |
| <developerConnection> |
| scm:svn:https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2-uel-plugin |
| </developerConnection> |
| <url>http://https://svn.apache.org/repos/asf/struts/sandbox/trunk/struts2-uel-plugin</url> |
| </scm> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.struts</groupId> |
| <artifactId>struts2-core</artifactId> |
| <version>2.2.0-SNAPSHOT</version> |
| <exclusions> |
| <exclusion> |
| <groupId>javax.servlet</groupId> |
| <artifactId>servlet-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.struts</groupId> |
| <artifactId>struts2-junit-plugin</artifactId> |
| <version>2.2.0-SNAPSHOT</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-test</artifactId> |
| <version>${struts2.springPlatformVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-core</artifactId> |
| <version>${struts2.springPlatformVersion}</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.4</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>de.odysseus.juel</groupId> |
| <artifactId>juel-impl</artifactId> |
| <version>2.2.0</version> |
| </dependency> |
| <dependency> |
| <groupId>de.odysseus.juel</groupId> |
| <artifactId>juel-api</artifactId> |
| <version>2.2.0</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.easymock</groupId> |
| <artifactId>easymock</artifactId> |
| <version>2.4</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>jsp-api</artifactId> |
| <version>2.0</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </project> |