mirror of
https://github.com/apache/struts.git
synced 2026-08-11 01:27:14 +00:00
492ab02d97
o applied patches by Dale Newfield to S2 and XW o updated xwork dep to 2.1.2-SNAPSHOT git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@667420 13f79535-47bb-0310-9956-ffa450edef68
383 lines
14 KiB
XML
383 lines
14 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.1.3-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-rest-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>com.opensymphony</groupId>
|
|
<artifactId>xwork</artifactId>
|
|
<classifier>javadoc</classifier>
|
|
<version>2.1.2-SNAPSHOT</version>
|
|
</artifactItem>
|
|
</artifactItems>
|
|
<outputDirectory>${project.build.directory}/xwork-apidocs</outputDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>cwiki-docs</id>
|
|
<phase>process-resources</phase>
|
|
<configuration>
|
|
<tasks>
|
|
<mkdir dir="${project.build.directory}/cwiki"/>
|
|
<get src="http://struts.apache.org/2.x/docs.zip"
|
|
dest="${project.build.directory}/docs.zip"
|
|
ignoreerrors="false"/>
|
|
<unzip src="${project.build.directory}/docs.zip"
|
|
dest="${project.build.directory}/cwiki"/>
|
|
</tasks>
|
|
</configuration>
|
|
<goals>
|
|
<goal>run</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<version>2.2-beta-1</version>
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/main/assembly/all.xml</descriptor>
|
|
<descriptor>src/main/assembly/lib.xml</descriptor>
|
|
<descriptor>src/main/assembly/lib-jdk14.xml</descriptor>
|
|
<descriptor>src/main/assembly/apps.xml</descriptor>
|
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
|
<descriptor>src/main/assembly/docs.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-codebehind-plugin</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-dojo-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-dwr-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-junit-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-portlet-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-rest-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-sitegraph-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-spring-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-testng-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-tiles-plugin</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
|
|
<!-- Backported JDK 1.4 jars -->
|
|
<dependency>
|
|
<groupId>net.sf.retrotranslator</groupId>
|
|
<artifactId>retrotranslator-runtime</artifactId>
|
|
<version>1.2.1</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>backport-util-concurrent</groupId>
|
|
<artifactId>backport-util-concurrent</artifactId>
|
|
<version>3.0</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.opensymphony</groupId>
|
|
<artifactId>xwork</artifactId>
|
|
<version>2.1.2-SNAPSHOT</version>
|
|
<type>jar</type>
|
|
<classifier>jdk14</classifier>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-core</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-config-browser-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-jasperreports-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-jfreechart-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-jsf-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-pell-multipart-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-plexus-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-sitegraph-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-sitemesh-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-struts1-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-tiles-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.struts</groupId>
|
|
<artifactId>struts2-rest-plugin</artifactId>
|
|
<version>${version}</version>
|
|
<classifier>jdk14</classifier>
|
|
</dependency>
|
|
|
|
|
|
</dependencies>
|
|
|
|
</project>
|