2017-10-22 12:29:13 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-10-21 11:24:47 +02:00
|
|
|
<!--
|
|
|
|
|
/*
|
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
|
* or more contributor license agreements. See the NOTICE file
|
|
|
|
|
* distributed with this work for additional information
|
|
|
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
|
|
|
* to you 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.
|
|
|
|
|
*/
|
|
|
|
|
-->
|
2013-11-30 09:35:02 +00:00
|
|
|
<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">
|
2006-07-14 06:34:51 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-parent</artifactId>
|
2022-02-24 07:11:22 +01:00
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
2006-07-14 06:34:51 +00:00
|
|
|
</parent>
|
|
|
|
|
|
2013-05-20 07:29:24 +00:00
|
|
|
<artifactId>struts2-assembly</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<name>Struts 2 Assembly</name>
|
|
|
|
|
|
2017-10-20 09:05:01 +02:00
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2013-05-25 16:37:42 +00:00
|
|
|
|
2017-10-20 09:05:01 +02:00
|
|
|
<maven.site.skip>true</maven.site.skip>
|
|
|
|
|
<maven.site.deploy.skip>true</maven.site.deploy.skip>
|
|
|
|
|
</properties>
|
2013-05-25 16:37:42 +00:00
|
|
|
|
2017-10-20 09:05:01 +02:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2006-07-14 06:34:51 +00:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>dependency-maven-plugin</artifactId>
|
2010-12-01 14:39:57 +00:00
|
|
|
<version>1.0</version>
|
2006-07-14 06:34:51 +00:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-war</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>copy</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<artifactItems>
|
|
|
|
|
<artifactItem>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-showcase</artifactId>
|
2011-03-04 08:01:18 +00:00
|
|
|
<version>${project.version}</version>
|
2006-07-14 06:34:51 +00:00
|
|
|
<type>war</type>
|
|
|
|
|
</artifactItem>
|
2007-12-17 09:20:25 +00:00
|
|
|
<artifactItem>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-rest-showcase</artifactId>
|
2011-03-04 08:01:18 +00:00
|
|
|
<version>${project.version}</version>
|
2007-12-17 09:20:25 +00:00
|
|
|
<type>war</type>
|
|
|
|
|
</artifactItem>
|
2006-07-14 06:34:51 +00:00
|
|
|
</artifactItems>
|
|
|
|
|
<outputDirectory>${project.build.directory}/apps</outputDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2010-05-05 16:45:20 +00:00
|
|
|
|
2014-04-06 10:17:41 +02:00
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2017-10-22 09:51:23 +02:00
|
|
|
<id>docs</id>
|
2014-04-06 10:17:41 +02:00
|
|
|
<phase>prepare-package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
2017-10-22 09:51:23 +02:00
|
|
|
<target>
|
|
|
|
|
<mkdir dir="${project.build.directory}/docs/" />
|
2014-04-06 10:17:41 +02:00
|
|
|
<exec executable="wget">
|
|
|
|
|
<arg value="-erobots=off" />
|
|
|
|
|
<arg value="-nH" />
|
2017-10-22 09:51:23 +02:00
|
|
|
<arg value="-x" />
|
2014-04-06 10:17:41 +02:00
|
|
|
<arg value="-nv" />
|
|
|
|
|
<arg value="-E" />
|
|
|
|
|
<arg value="-L" />
|
|
|
|
|
<arg value="-np" />
|
2017-10-22 09:51:23 +02:00
|
|
|
<arg value="--directory-prefix=${project.build.directory}/docs" />
|
2014-04-06 10:17:41 +02:00
|
|
|
<arg value="--no-check-certificate" />
|
|
|
|
|
<arg value="-r" />
|
2017-10-22 09:51:23 +02:00
|
|
|
<arg value="-i" />
|
|
|
|
|
<arg value="src/main/resources/docs-urls.txt" />
|
2014-04-06 10:17:41 +02:00
|
|
|
</exec>
|
2017-10-22 09:51:23 +02:00
|
|
|
</target>
|
2014-04-06 10:17:41 +02:00
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
2006-07-14 06:34:51 +00:00
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2008-12-24 19:34:53 +00:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>make-assembly</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
2018-09-18 09:49:27 +02:00
|
|
|
<goal>single</goal>
|
2008-12-24 19:34:53 +00:00
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2006-07-14 06:34:51 +00:00
|
|
|
<configuration>
|
|
|
|
|
<descriptors>
|
|
|
|
|
<descriptor>src/main/assembly/all.xml</descriptor>
|
|
|
|
|
<descriptor>src/main/assembly/lib.xml</descriptor>
|
2015-11-20 13:16:26 +01:00
|
|
|
<descriptor>src/main/assembly/min-lib.xml</descriptor>
|
2006-07-14 06:34:51 +00:00
|
|
|
<descriptor>src/main/assembly/apps.xml</descriptor>
|
|
|
|
|
<descriptor>src/main/assembly/src.xml</descriptor>
|
2007-11-25 15:31:56 +00:00
|
|
|
<descriptor>src/main/assembly/docs.xml</descriptor>
|
2006-07-14 06:34:51 +00:00
|
|
|
</descriptors>
|
2011-03-04 08:01:18 +00:00
|
|
|
<finalName>struts-${project.version}</finalName>
|
2006-07-14 06:34:51 +00:00
|
|
|
<outputDirectory>target/assembly/out</outputDirectory>
|
|
|
|
|
<workDirectory>target/assembly/work</workDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2015-05-27 20:56:17 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
2015-11-20 13:16:26 +01:00
|
|
|
<artifactId>struts2-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
2015-05-27 20:56:17 +02:00
|
|
|
<artifactId>struts2-bean-validation-plugin</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2013-09-24 18:41:55 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-cdi-plugin</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2008-12-22 19:15:11 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-convention-plugin</artifactId>
|
|
|
|
|
</dependency>
|
2011-03-16 19:43:23 +00:00
|
|
|
|
2008-12-22 19:15:11 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-javatemplates-plugin</artifactId>
|
|
|
|
|
</dependency>
|
2007-11-25 15:31:56 +00:00
|
|
|
|
2006-09-29 06:16:46 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-config-browser-plugin</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2008-04-19 12:14:02 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-dwr-plugin</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2006-07-14 06:34:51 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
2006-09-29 06:16:46 +00:00
|
|
|
<artifactId>struts2-jasperreports-plugin</artifactId>
|
2006-07-14 06:34:51 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
2006-09-29 06:16:46 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-jfreechart-plugin</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2008-04-19 12:14:02 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-junit-plugin</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2006-09-29 06:16:46 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-pell-multipart-plugin</artifactId>
|
2007-02-07 13:23:42 +00:00
|
|
|
</dependency>
|
2006-09-29 06:16:46 +00:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-plexus-plugin</artifactId>
|
2007-02-07 13:23:42 +00:00
|
|
|
</dependency>
|
2006-09-29 06:16:46 +00:00
|
|
|
|
2006-10-09 03:19:57 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
2008-04-19 12:14:02 +00:00
|
|
|
<artifactId>struts2-portlet-plugin</artifactId>
|
2007-02-07 13:23:42 +00:00
|
|
|
</dependency>
|
2006-10-09 03:19:57 +00:00
|
|
|
|
2006-09-29 06:16:46 +00:00
|
|
|
<dependency>
|
2008-04-19 12:14:02 +00:00
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-rest-plugin</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2011-03-16 19:43:23 +00:00
|
|
|
<dependency>
|
2006-09-29 06:16:46 +00:00
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-sitemesh-plugin</artifactId>
|
2007-02-07 13:23:42 +00:00
|
|
|
</dependency>
|
2011-03-16 19:43:23 +00:00
|
|
|
<dependency>
|
2008-04-19 12:14:02 +00:00
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-spring-plugin</artifactId>
|
|
|
|
|
</dependency>
|
2006-09-29 06:16:46 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
2008-04-19 12:14:02 +00:00
|
|
|
<artifactId>struts2-testng-plugin</artifactId>
|
2007-02-07 13:23:42 +00:00
|
|
|
</dependency>
|
2006-09-29 06:16:46 +00:00
|
|
|
|
2007-06-15 14:35:32 +00:00
|
|
|
<dependency>
|
2007-12-17 09:20:25 +00:00
|
|
|
<groupId>org.apache.struts</groupId>
|
2008-04-19 12:14:02 +00:00
|
|
|
<artifactId>struts2-tiles-plugin</artifactId>
|
2013-05-20 07:29:24 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
2009-04-15 14:07:56 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-oval-plugin</artifactId>
|
|
|
|
|
</dependency>
|
2011-03-16 19:43:23 +00:00
|
|
|
|
2009-08-10 19:00:38 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-json-plugin</artifactId>
|
|
|
|
|
</dependency>
|
2011-03-16 19:43:23 +00:00
|
|
|
|
2009-08-19 16:40:04 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-embeddedjsp-plugin</artifactId>
|
|
|
|
|
</dependency>
|
2011-03-16 19:43:23 +00:00
|
|
|
|
2011-02-03 08:45:41 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-gxp-plugin</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2009-04-15 14:32:48 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-osgi-plugin</artifactId>
|
|
|
|
|
</dependency>
|
2011-03-16 19:43:23 +00:00
|
|
|
|
2009-04-17 16:24:46 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-osgi-admin-bundle</artifactId>
|
|
|
|
|
</dependency>
|
2011-03-16 19:43:23 +00:00
|
|
|
|
2009-04-17 16:24:46 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-osgi-demo-bundle</artifactId>
|
|
|
|
|
</dependency>
|
2011-03-16 19:43:23 +00:00
|
|
|
|
2006-07-14 06:34:51 +00:00
|
|
|
</dependencies>
|
2009-01-15 03:06:14 +00:00
|
|
|
</project>
|