2006-09-24 02:27:41 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<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-parent</artifactId>
|
2007-01-20 03:49:06 +00:00
|
|
|
<version>2.0.4-SNAPSHOT</version>
|
2006-09-24 02:27:41 +00:00
|
|
|
</parent>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
2006-09-27 05:59:22 +00:00
|
|
|
<artifactId>struts2-plugins</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<name>Struts Plugins</name>
|
2006-11-03 10:41:55 +00:00
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/plugins/</connection>
|
|
|
|
|
<developerConnection>scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/plugins/</developerConnection>
|
|
|
|
|
<url>http://svn.apache.org/repos/asf/struts/struts2/trunk/plugins/</url>
|
|
|
|
|
</scm>
|
|
|
|
|
|
2006-09-27 05:59:22 +00:00
|
|
|
<modules>
|
2006-11-19 05:03:10 +00:00
|
|
|
<module>codebehind</module>
|
2006-10-09 03:19:57 +00:00
|
|
|
<module>config-browser</module>
|
2006-12-13 06:19:43 +00:00
|
|
|
<module>continuations</module>
|
2006-09-27 05:59:22 +00:00
|
|
|
<module>jasperreports</module>
|
|
|
|
|
<module>jfreechart</module>
|
2006-09-27 06:19:05 +00:00
|
|
|
<module>jsf</module>
|
2006-10-09 03:19:57 +00:00
|
|
|
<module>pell-multipart</module>
|
2006-09-29 06:07:49 +00:00
|
|
|
<module>plexus</module>
|
2006-10-09 03:19:57 +00:00
|
|
|
<module>sitegraph</module>
|
2006-09-29 06:07:49 +00:00
|
|
|
<module>sitemesh</module>
|
2006-11-14 12:15:13 +00:00
|
|
|
<module>spring</module>
|
|
|
|
|
<module>struts1</module>
|
2006-09-29 06:07:49 +00:00
|
|
|
<module>tiles</module>
|
2006-09-27 05:59:22 +00:00
|
|
|
</modules>
|
2006-09-24 02:27:41 +00:00
|
|
|
|
|
|
|
|
<dependencies>
|
2006-09-27 05:59:22 +00:00
|
|
|
|
2006-09-24 02:27:41 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-core</artifactId>
|
|
|
|
|
<version>${pom.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2006-09-27 05:59:22 +00:00
|
|
|
<!-- Test dependencies -->
|
2006-09-24 02:27:41 +00:00
|
|
|
<dependency>
|
2006-09-27 05:59:22 +00:00
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
<!-- has to be compile for StrutsTestCase, which is part of the base package so others can write unit tests -->
|
|
|
|
|
<optional>true</optional>
|
2006-09-24 02:27:41 +00:00
|
|
|
</dependency>
|
2006-09-27 05:59:22 +00:00
|
|
|
|
|
|
|
|
|
2006-09-24 02:27:41 +00:00
|
|
|
<dependency>
|
2006-09-27 05:59:22 +00:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
<scope>provided</scope>
|
2006-09-24 02:27:41 +00:00
|
|
|
</dependency>
|
2006-09-27 05:59:22 +00:00
|
|
|
|
|
|
|
|
|
2006-09-24 02:27:41 +00:00
|
|
|
</dependencies>
|
2006-09-27 05:59:22 +00:00
|
|
|
|
2006-09-24 02:27:41 +00:00
|
|
|
</project>
|