mirror of
https://github.com/apache/struts.git
synced 2026-08-11 01:27:14 +00:00
b73e5bb5cb
WW-1457 git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@451454 13f79535-47bb-0310-9956-ffa450edef68
352 lines
11 KiB
XML
352 lines
11 KiB
XML
<?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>
|
|
<version>2.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-core</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Struts 2 - Core</name>
|
|
|
|
<distributionManagement>
|
|
<site>
|
|
<id>apache-site</id>
|
|
<url>scp://people.apache.org/www/struts.apache.org/2.x/struts-core</url>
|
|
</site>
|
|
</distributionManagement>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.0</version>
|
|
<configuration>
|
|
<sourcepath>src/main/java;../../xwork/src/java</sourcepath>
|
|
<groups>
|
|
<group>
|
|
<title>Struts Packages</title>
|
|
<packages>org.apache.struts2*</packages>
|
|
</group>
|
|
<group>
|
|
<title>XWork Packages</title>
|
|
<packages>com.opensymphony.xwork2*</packages>
|
|
</group>
|
|
</groups>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
<dependencies>
|
|
<!-- unreferenced dependencies:
|
|
* clover, mockobjects, xdoclet : only needed for build
|
|
* cewolf : only used in demos
|
|
* quickstart : because i'm lazy, and because it's unlikely to be needed to build a
|
|
project using ww
|
|
* w3c.dom : needed for the xslt : this is all included in jdk1.5
|
|
- classes missing in jdk1.4 are org.w3c.dom.TypeInfo,
|
|
org.w3c.dom.UserDataHandler, org.w3c.dom.DOMConfiguration
|
|
- this should be configurable with <profiles>
|
|
-->
|
|
<dependency>
|
|
<groupId>opensymphony</groupId>
|
|
<artifactId>xwork</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-api</artifactId>
|
|
<version>${pom.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>freemarker</groupId>
|
|
<artifactId>freemarker</artifactId>
|
|
<version>2.3.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>jsp-api</artifactId>
|
|
<version>2.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
<version>1.0.4</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- Ajax -->
|
|
<dependency>
|
|
<groupId>uk.ltd.getahead</groupId>
|
|
<artifactId>dwr</artifactId>
|
|
<version>1.1-beta-3</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- Velocity -->
|
|
<dependency>
|
|
<groupId>velocity</groupId>
|
|
<artifactId>velocity</artifactId>
|
|
<version>1.4</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>velocity-tools</groupId>
|
|
<artifactId>velocity-tools</artifactId>
|
|
<version>1.1</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- File upload -->
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>1.1.1</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- Quickstart -->
|
|
<dependency>
|
|
<groupId>jetty</groupId>
|
|
<artifactId>org.mortbay.jetty</artifactId>
|
|
<version>5.1.4</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>eclipse</groupId>
|
|
<artifactId>jdtcore</artifactId>
|
|
<version>3.1.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
<version>1.6.5</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>tomcat</groupId>
|
|
<artifactId>jasper-compiler</artifactId>
|
|
<version>5.5.12</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>tomcat</groupId>
|
|
<artifactId>jasper-runtime</artifactId>
|
|
<version>5.5.12</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>tomcat</groupId>
|
|
<artifactId>jasper-compiler-jdt</artifactId>
|
|
<version>5.5.12</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-el</groupId>
|
|
<artifactId>commons-el</artifactId>
|
|
<version>1.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>1.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.1</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- QuickStart -->
|
|
<dependency>
|
|
<groupId>xstream</groupId>
|
|
<artifactId>xstream</artifactId>
|
|
<version>1.1.2</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-digester</groupId>
|
|
<artifactId>commons-digester</artifactId>
|
|
<version>1.7</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- Portlet -->
|
|
<dependency>
|
|
<groupId>portlet-api</groupId>
|
|
<artifactId>portlet-api</artifactId>
|
|
<version>1.0</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.pluto</groupId>
|
|
<artifactId>pluto</artifactId>
|
|
<version>1.0.1-rc4</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- Spring -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-beans</artifactId>
|
|
<version>1.2.8</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-core</artifactId>
|
|
<version>1.2.8</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>1.2.8</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
<version>1.2.8</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-mock</artifactId>
|
|
<version>1.2.8</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<!-- Test dependencies -->
|
|
<dependency>
|
|
<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>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>jmock</groupId>
|
|
<artifactId>jmock</artifactId>
|
|
<version>1.0.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.easymock</groupId>
|
|
<artifactId>easymock</artifactId>
|
|
<version>2.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<!--dependency>
|
|
<groupId>org.easymock</groupId>
|
|
<artifactId>easymockclassextension</artifactId>
|
|
<version>1.1</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.easymock</groupId>
|
|
<artifactId>easymock</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency-->
|
|
<dependency>
|
|
<groupId>org.rifers</groupId>
|
|
<artifactId>rife-continuations</artifactId>
|
|
<version>0.0.2</version>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>jmock</groupId>
|
|
<artifactId>jmock-cglib</artifactId>
|
|
<version>1.0.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mockobjects</groupId>
|
|
<artifactId>mockobjects-core</artifactId>
|
|
<version>0.09</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mockobjects</groupId>
|
|
<artifactId>mockobjects-jdk1.3</artifactId>
|
|
<version>0.09</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mockobjects</groupId>
|
|
<artifactId>mockobjects-alt-jdk1.3</artifactId>
|
|
<version>0.09</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mockobjects</groupId>
|
|
<artifactId>mockobjects-alt-jdk1.3-j2ee1.3</artifactId>
|
|
<version>0.09</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>mockobjects</groupId>
|
|
<artifactId>mockobjects-jdk1.3-j2ee1.3</artifactId>
|
|
<version>0.09</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.9</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|