mirror of
https://github.com/apache/struts.git
synced 2026-08-11 01:27:14 +00:00
4f148cb793
WW-1453 git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@452735 13f79535-47bb-0310-9956-ffa450edef68
430 lines
15 KiB
XML
430 lines
15 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
/*
|
|
* Copyright 2005-2006 The Apache Software Foundation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
* $Id$
|
|
*/
|
|
-->
|
|
|
|
<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.struts</groupId>
|
|
<artifactId>struts2-assembly</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>Struts 2 Assembly</name>
|
|
<description>
|
|
Struts 2 Assembly
|
|
</description>
|
|
|
|
<parent>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-parent</artifactId>
|
|
<version>2.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<scm>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/struts/struts2/trunk/assembly</connection>
|
|
<developerConnection>
|
|
scm:svn:https://svn.apache.org/repos/asf/struts/struts2/trunk/assembly</developerConnection>
|
|
<url>http://svn.apache.org/viewcvs.cgi/struts/struts2/trunk/assembly</url>
|
|
</scm>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>dependency-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-war</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactItems>
|
|
<artifactItem>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-blank</artifactId>
|
|
<version>${version}</version>
|
|
<type>war</type>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-mailreader</artifactId>
|
|
<version>${version}</version>
|
|
<type>war</type>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-portlet</artifactId>
|
|
<version>${version}</version>
|
|
<type>war</type>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-showcase</artifactId>
|
|
<version>${version}</version>
|
|
<type>war</type>
|
|
</artifactItem>
|
|
<artifactItem>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-mailreader</artifactId>
|
|
<version>${version}</version>
|
|
<type>war</type>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
<outputDirectory>${project.build.directory}/apps</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>xwork-javadoc</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>unpack</goal>
|
|
</goals>
|
|
<configuration>
|
|
<artifactItems>
|
|
<artifactItem>
|
|
<groupId>opensymphony</groupId>
|
|
<artifactId>xwork</artifactId>
|
|
<classifier>javadoc</classifier>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
<outputDirectory>${project.build.directory}/xwork-apidocs</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.0.1</version>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/all.xml</descriptor>
|
|
<descriptor>src/main/assembly/lib.xml</descriptor>
|
|
<descriptor>src/main/assembly/apps.xml</descriptor>
|
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
|
</descriptors>
|
|
<finalName>struts-${version}</finalName>
|
|
<outputDirectory>target/assembly/out</outputDirectory>
|
|
<workDirectory>target/assembly/work</workDirectory>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-api</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-core</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-all</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-config-browser-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-jasperreports-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-jfreechart-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-jsf-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-pell-multipart-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-plexus-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-sitemesh-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-struts1-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-tiles-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- Include optional dependencies -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>jsp-api</artifactId>
|
|
<version>2.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Ajax -->
|
|
<dependency>
|
|
<groupId>uk.ltd.getahead</groupId>
|
|
<artifactId>dwr</artifactId>
|
|
<version>1.1-beta-3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Velocity -->
|
|
<dependency>
|
|
<groupId>velocity</groupId>
|
|
<artifactId>velocity</artifactId>
|
|
<version>1.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>velocity-tools</groupId>
|
|
<artifactId>velocity-tools</artifactId>
|
|
<version>1.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- File upload -->
|
|
<dependency>
|
|
<groupId>commons-fileupload</groupId>
|
|
<artifactId>commons-fileupload</artifactId>
|
|
<version>1.1.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Sitemesh -->
|
|
<dependency>
|
|
<groupId>opensymphony</groupId>
|
|
<artifactId>sitemesh</artifactId>
|
|
<version>2.2.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Quickstart -->
|
|
<dependency>
|
|
<groupId>jetty</groupId>
|
|
<artifactId>org.mortbay.jetty</artifactId>
|
|
<version>5.1.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>eclipse</groupId>
|
|
<artifactId>jdtcore</artifactId>
|
|
<version>3.1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>ant</groupId>
|
|
<artifactId>ant</artifactId>
|
|
<version>1.6.5</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>tomcat</groupId>
|
|
<artifactId>jasper-compiler</artifactId>
|
|
<version>5.5.12</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>tomcat</groupId>
|
|
<artifactId>jasper-runtime</artifactId>
|
|
<version>5.5.12</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>tomcat</groupId>
|
|
<artifactId>jasper-compiler-jdt</artifactId>
|
|
<version>5.5.12</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-el</groupId>
|
|
<artifactId>commons-el</artifactId>
|
|
<version>1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- QuickStart -->
|
|
<dependency>
|
|
<groupId>xstream</groupId>
|
|
<artifactId>xstream</artifactId>
|
|
<version>1.1.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Tiles -->
|
|
<dependency>
|
|
<groupId>org.apache.struts.tiles</groupId>
|
|
<artifactId>tiles-core</artifactId>
|
|
<version>0.2-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-digester</groupId>
|
|
<artifactId>commons-digester</artifactId>
|
|
<version>1.7</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Portlet -->
|
|
<dependency>
|
|
<groupId>portlet-api</groupId>
|
|
<artifactId>portlet-api</artifactId>
|
|
<version>1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.pluto</groupId>
|
|
<artifactId>pluto</artifactId>
|
|
<version>1.0.1-rc4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Plexus -->
|
|
<dependency>
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
<artifactId>plexus-container-default</artifactId>
|
|
<version>1.0-alpha-10-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Spring -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-beans</artifactId>
|
|
<version>1.2.8</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-core</artifactId>
|
|
<version>1.2.8</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>1.2.8</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
<version>1.2.8</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-mock</artifactId>
|
|
<version>1.2.8</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>myfaces</groupId>
|
|
<artifactId>myfaces-jsf-api</artifactId>
|
|
<version>1.0.9</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.rifers</groupId>
|
|
<artifactId>rife-continuations</artifactId>
|
|
<version>0.0.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Exclude transitive dependencies -->
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|