mirror of
https://github.com/apache/struts.git
synced 2026-08-06 23:27:07 +00:00
breaking up the third party libs that can't be in the default build.
However, this doesn't mean that I don't think that rule is stupid. Because it is. git-svn-id: https://svn.apache.org/repos/asf/incubator/webwork2@393566 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -12,91 +12,6 @@
|
||||
<artifactId>action</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Struts Action Framework 2.0</name>
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</connection>
|
||||
<developerConnection>scm:svn:http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</developerConnection>
|
||||
<url>http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</url>
|
||||
</scm>
|
||||
<profiles>
|
||||
<profile>
|
||||
<activation>
|
||||
<jdk>1.4</jdk>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<!-- should have the org.w3c.dom dependency here -->
|
||||
</dependencies>
|
||||
</profile>
|
||||
</profiles>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>snapshots-maven-codehaus</id>
|
||||
<name>snapshots-maven-codehaus</name>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<url>http://snapshots.maven.codehaus.org/maven2</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>opensymphony</id>
|
||||
<name>opensymphony</name>
|
||||
<layout>legacy</layout>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<url>http://maven.opensymphony.com</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
<configuration>
|
||||
<jdkName>1.4</jdkName>
|
||||
<exclude>target,test-output,.clover</exclude>
|
||||
<useShortDependencyNames>true</useShortDependencyNames>
|
||||
<libraries>
|
||||
<library>
|
||||
<name>xwork</name>
|
||||
<sources>file://$xwork$/src/java</sources>
|
||||
</library>
|
||||
<library>
|
||||
<name>xwork-tiger</name>
|
||||
<sources>file://$xwork$/tiger/src/java</sources>
|
||||
</library>
|
||||
</libraries>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>**/*Test.java</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/TestBean.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<!-- unreferenced dependencies:
|
||||
* clover, mockobjects, xdoclet : only needed for build
|
||||
|
||||
@@ -67,6 +67,107 @@
|
||||
<module>action</module>
|
||||
<module>webapps</module>
|
||||
</modules>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>snapshots-maven-codehaus</id>
|
||||
<name>snapshots-maven-codehaus</name>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<url>http://snapshots.maven.codehaus.org/maven2</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>apache</id>
|
||||
<name>apache</name>
|
||||
<layout>legacy</layout>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<url>http://cvs.apache.org/repository</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>opensymphony</id>
|
||||
<name>opensymphony</name>
|
||||
<layout>legacy</layout>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<url>http://maven.opensymphony.com</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<profiles>
|
||||
<profile>
|
||||
<id>thirdparty</id>
|
||||
<modules>
|
||||
<module>thirdparty</module>
|
||||
<module>uber</module>
|
||||
</modules>
|
||||
</profile>
|
||||
<profile>
|
||||
<activation>
|
||||
<jdk>1.4</jdk>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<!-- should have the org.w3c.dom dependency here -->
|
||||
</dependencies>
|
||||
</profile>
|
||||
</profiles>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
<configuration>
|
||||
<jdkName>1.4</jdkName>
|
||||
<exclude>target,test-output,.clover</exclude>
|
||||
<useShortDependencyNames>true</useShortDependencyNames>
|
||||
<libraries>
|
||||
<library>
|
||||
<name>xwork</name>
|
||||
<sources>file://$xwork$/src/java</sources>
|
||||
</library>
|
||||
<library>
|
||||
<name>xwork-tiger</name>
|
||||
<sources>file://$xwork$/tiger/src/java</sources>
|
||||
</library>
|
||||
</libraries>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>**/*Test.java</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/TestBean.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</connection>
|
||||
<developerConnection>scm:svn:http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</developerConnection>
|
||||
|
||||
Vendored
+101
@@ -0,0 +1,101 @@
|
||||
<?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.action2</groupId>
|
||||
<artifactId>thirdparty</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
<artifactId>action-jasperreports</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>JasperReports</name>
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</connection>
|
||||
<developerConnection>scm:svn:http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</developerConnection>
|
||||
<url>http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</url>
|
||||
</scm>
|
||||
<profiles>
|
||||
<profile>
|
||||
<activation>
|
||||
<jdk>1.4</jdk>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<!-- should have the org.w3c.dom dependency here -->
|
||||
</dependencies>
|
||||
</profile>
|
||||
</profiles>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>opensymphony</id>
|
||||
<name>opensymphony</name>
|
||||
<layout>legacy</layout>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<url>http://maven.opensymphony.com</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
<configuration>
|
||||
<jdkName>1.4</jdkName>
|
||||
<exclude>target,test-output,.clover</exclude>
|
||||
<useShortDependencyNames>true</useShortDependencyNames>
|
||||
<libraries>
|
||||
<library>
|
||||
<name>xwork</name>
|
||||
<sources>file://$xwork$/src/java</sources>
|
||||
</library>
|
||||
<library>
|
||||
<name>xwork-tiger</name>
|
||||
<sources>file://$xwork$/tiger/src/java</sources>
|
||||
</library>
|
||||
</libraries>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>**/*Test.java</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/TestBean.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>jasperreports</groupId>
|
||||
<artifactId>jasperreports</artifactId>
|
||||
<version>1.1.0</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>servlet-api</artifactId>
|
||||
<version>2.4</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id$
|
||||
* $Id: CompileReport.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
*
|
||||
@@ -24,7 +24,7 @@ import net.sf.jasperreports.engine.JasperCompileManager;
|
||||
* Ported to Struts:
|
||||
*
|
||||
* @author <a href="hermanns@aixcept.de">Rainer Hermanns</a>
|
||||
* @version $Id$
|
||||
* @version $Id: CompileReport.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*/
|
||||
public class CompileReport {
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id$
|
||||
* $Id: JasperReportConstants.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
*
|
||||
@@ -22,7 +22,7 @@ package org.apache.struts.action2.views.jasperreports;
|
||||
* <code>JasperReportConstants</code>
|
||||
*
|
||||
* @author <a href="mailto:hermanns@aixcept.de">Rainer Hermanns</a>
|
||||
* @version $Id$
|
||||
* @version $Id: JasperReportConstants.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*/
|
||||
public interface JasperReportConstants {
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id$
|
||||
* $Id: JasperReportsResult.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
*
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id$
|
||||
* $Id: OgnlValueStackDataSource.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
*
|
||||
@@ -31,7 +31,7 @@ import java.util.Iterator;
|
||||
* Ported to Struts.
|
||||
*
|
||||
* @author <a href="hermanns@aixcept.de">Rainer Hermanns</a>
|
||||
* @version $Id$
|
||||
* @version $Id: OgnlValueStackDataSource.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*/
|
||||
public class OgnlValueStackDataSource implements JRDataSource {
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id$
|
||||
* $Id: OgnlValueStackShadowMap.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
*
|
||||
@@ -27,7 +27,7 @@ import java.util.Set;
|
||||
* Ported to Struts:
|
||||
*
|
||||
* @author <a href="hermanns@aixcept.de">Rainer Hermanns</a>
|
||||
* @version $Id$
|
||||
* @version $Id: OgnlValueStackShadowMap.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*/
|
||||
public class OgnlValueStackShadowMap extends HashMap {
|
||||
|
||||
Vendored
+115
@@ -0,0 +1,115 @@
|
||||
<?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.action2</groupId>
|
||||
<artifactId>thirdparty</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
<artifactId>action-jfreechart</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>JFree Chart</name>
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</connection>
|
||||
<developerConnection>scm:svn:http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</developerConnection>
|
||||
<url>http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</url>
|
||||
</scm>
|
||||
<profiles>
|
||||
<profile>
|
||||
<activation>
|
||||
<jdk>1.4</jdk>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<!-- should have the org.w3c.dom dependency here -->
|
||||
</dependencies>
|
||||
</profile>
|
||||
</profiles>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>opensymphony</id>
|
||||
<name>opensymphony</name>
|
||||
<layout>legacy</layout>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<url>http://maven.opensymphony.com</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
<configuration>
|
||||
<jdkName>1.4</jdkName>
|
||||
<exclude>target,test-output,.clover</exclude>
|
||||
<useShortDependencyNames>true</useShortDependencyNames>
|
||||
<libraries>
|
||||
<library>
|
||||
<name>xwork</name>
|
||||
<sources>file://$xwork$/src/java</sources>
|
||||
</library>
|
||||
<library>
|
||||
<name>xwork-tiger</name>
|
||||
<sources>file://$xwork$/tiger/src/java</sources>
|
||||
</library>
|
||||
</libraries>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>**/*Test.java</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/TestBean.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>jfree</groupId>
|
||||
<artifactId>jfreechart</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<optional>true</optional>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>gnujaxp</groupId>
|
||||
<artifactId>gnujaxp</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>servlet-api</artifactId>
|
||||
<version>2.4</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>mockobjects</groupId>
|
||||
<artifactId>mockobjects-core</artifactId>
|
||||
<version>0.09</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id$
|
||||
* $Id: ChartResult.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
*
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id$
|
||||
* $Id: ChartResultTest.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
*
|
||||
Vendored
+103
@@ -0,0 +1,103 @@
|
||||
<?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.action2</groupId>
|
||||
<artifactId>thirdparty</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
<artifactId>action-pell-file-upload</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Pell File Upload</name>
|
||||
<scm>
|
||||
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</connection>
|
||||
<developerConnection>scm:svn:http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</developerConnection>
|
||||
<url>http://svn.apache.org/repos/asf/incubator/webwork2/trunk/</url>
|
||||
</scm>
|
||||
<profiles>
|
||||
<profile>
|
||||
<activation>
|
||||
<jdk>1.4</jdk>
|
||||
</activation>
|
||||
<dependencies>
|
||||
<!-- should have the org.w3c.dom dependency here -->
|
||||
</dependencies>
|
||||
</profile>
|
||||
</profiles>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>opensymphony</id>
|
||||
<name>opensymphony</name>
|
||||
<layout>legacy</layout>
|
||||
<snapshots>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
<checksumPolicy>ignore</checksumPolicy>
|
||||
</snapshots>
|
||||
<releases>
|
||||
<enabled>false</enabled>
|
||||
</releases>
|
||||
<url>http://maven.opensymphony.com</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
<configuration>
|
||||
<jdkName>1.4</jdkName>
|
||||
<exclude>target,test-output,.clover</exclude>
|
||||
<useShortDependencyNames>true</useShortDependencyNames>
|
||||
<libraries>
|
||||
<library>
|
||||
<name>xwork</name>
|
||||
<sources>file://$xwork$/src/java</sources>
|
||||
</library>
|
||||
<library>
|
||||
<name>xwork-tiger</name>
|
||||
<sources>file://$xwork$/tiger/src/java</sources>
|
||||
</library>
|
||||
</libraries>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<configuration>
|
||||
<includes>
|
||||
<include>**/*Test.java</include>
|
||||
</includes>
|
||||
<excludes>
|
||||
<exclude>**/TestBean.java</exclude>
|
||||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>opensymphony</groupId>
|
||||
<artifactId>pell-multipart</artifactId>
|
||||
<!-- webwork's ivy dependency reports mentions v1.19 ? -->
|
||||
<version>2.1.5</version>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>servlet-api</artifactId>
|
||||
<version>2.4</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id$
|
||||
* $Id: PellMultiPartRequest.java 392647 2006-04-09 00:41:12Z plightbo $
|
||||
*
|
||||
* Copyright 2006 The Apache Software Foundation.
|
||||
*
|
||||
Vendored
+27
@@ -0,0 +1,27 @@
|
||||
<?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.action2</groupId>
|
||||
<artifactId>project</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
<artifactId>thirdparty</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Third Party Modules</name>
|
||||
<modules>
|
||||
<module>jasperreports</module>
|
||||
<module>jfreechart</module>
|
||||
<module>pell-file-upload</module>
|
||||
</modules>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<artifactId>action</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
@@ -0,0 +1,63 @@
|
||||
<?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.action2</groupId>
|
||||
<artifactId>project</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
<artifactId>action-all</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Uber Jar</name>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<configuration>
|
||||
<descriptor>src/assemble/main.xml</descriptor>
|
||||
</configuration>
|
||||
<!-- Note: We need to turn this off because of http://jira.codehaus.org/browse/MNG-1684 -->
|
||||
<!--
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>attached</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
-->
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<artifactId>action</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
<artifactId>action-jasperreports</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
<artifactId>action-jfreechart</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
<artifactId>action-pell-file-upload</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
@@ -0,0 +1,19 @@
|
||||
<assembly>
|
||||
<formats>
|
||||
<format>jar</format>
|
||||
</formats>
|
||||
<includeBaseDirectory>false</includeBaseDirectory>
|
||||
<dependencySets>
|
||||
<dependencySet>
|
||||
<outputDirectory>/</outputDirectory>
|
||||
<includes>
|
||||
<include>org.apache.struts.action2:action</include>
|
||||
<include>org.apache.struts.action2:action-jasperreports</include>
|
||||
<include>org.apache.struts.action2:action-jfreechart</include>
|
||||
<include>org.apache.struts.action2:action-pell-file-upload</include>
|
||||
</includes>
|
||||
<unpack>true</unpack>
|
||||
<scope>test</scope>
|
||||
</dependencySet>
|
||||
</dependencySets>
|
||||
</assembly>
|
||||
@@ -12,41 +12,6 @@
|
||||
<artifactId>webapp-blank</artifactId>
|
||||
<packaging>war</packaging>
|
||||
<name>Blank Webapp</name>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
<configuration>
|
||||
<jdkName>1.4</jdkName>
|
||||
<exclude>target,test-output,.clover</exclude>
|
||||
<useShortDependencyNames>true</useShortDependencyNames>
|
||||
<libraries>
|
||||
<library>
|
||||
<name>xwork</name>
|
||||
<sources>file://$xwork$/src/java</sources>
|
||||
</library>
|
||||
<library>
|
||||
<name>xwork-tiger</name>
|
||||
<sources>file://$xwork$/tiger/src/java</sources>
|
||||
</library>
|
||||
</libraries>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<artifactId>action</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
||||
@@ -19,4 +19,18 @@
|
||||
<module>showcase</module>
|
||||
<module>starter</module>
|
||||
</modules>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<artifactId>action</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>servlet-api</artifactId>
|
||||
<version>2.4</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
||||
@@ -12,50 +12,7 @@
|
||||
<artifactId>webapp-portlet</artifactId>
|
||||
<packaging>war</packaging>
|
||||
<name>Portet Webapp</name>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
<configuration>
|
||||
<jdkName>1.4</jdkName>
|
||||
<exclude>target,test-output,.clover</exclude>
|
||||
<useShortDependencyNames>true</useShortDependencyNames>
|
||||
<libraries>
|
||||
<library>
|
||||
<name>xwork</name>
|
||||
<sources>file://$xwork$/src/java</sources>
|
||||
</library>
|
||||
<library>
|
||||
<name>xwork-tiger</name>
|
||||
<sources>file://$xwork$/tiger/src/java</sources>
|
||||
</library>
|
||||
</libraries>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<artifactId>action</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>servlet-api</artifactId>
|
||||
<version>2.4</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>portlet-api</groupId>
|
||||
<artifactId>portlet-api</artifactId>
|
||||
|
||||
@@ -12,41 +12,6 @@
|
||||
<artifactId>webapp-shopping-cart</artifactId>
|
||||
<packaging>war</packaging>
|
||||
<name>Shopping Cart Webapp</name>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
<configuration>
|
||||
<jdkName>1.4</jdkName>
|
||||
<exclude>target,test-output,.clover</exclude>
|
||||
<useShortDependencyNames>true</useShortDependencyNames>
|
||||
<libraries>
|
||||
<library>
|
||||
<name>xwork</name>
|
||||
<sources>file://$xwork$/src/java</sources>
|
||||
</library>
|
||||
<library>
|
||||
<name>xwork-tiger</name>
|
||||
<sources>file://$xwork$/tiger/src/java</sources>
|
||||
</library>
|
||||
</libraries>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<artifactId>action</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
||||
@@ -12,50 +12,7 @@
|
||||
<artifactId>webapp-showcase</artifactId>
|
||||
<packaging>war</packaging>
|
||||
<name>Showcase Webapp</name>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
<configuration>
|
||||
<jdkName>1.4</jdkName>
|
||||
<exclude>target,test-output,.clover</exclude>
|
||||
<useShortDependencyNames>true</useShortDependencyNames>
|
||||
<libraries>
|
||||
<library>
|
||||
<name>xwork</name>
|
||||
<sources>file://$xwork$/src/java</sources>
|
||||
</library>
|
||||
<library>
|
||||
<name>xwork-tiger</name>
|
||||
<sources>file://$xwork$/tiger/src/java</sources>
|
||||
</library>
|
||||
</libraries>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<artifactId>action</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>javax.servlet</groupId>
|
||||
<artifactId>servlet-api</artifactId>
|
||||
<version>2.4</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>log4j</groupId>
|
||||
<artifactId>log4j</artifactId>
|
||||
|
||||
@@ -12,41 +12,6 @@
|
||||
<artifactId>webapp-starter</artifactId>
|
||||
<packaging>war</packaging>
|
||||
<name>Starter Webapp</name>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-idea-plugin</artifactId>
|
||||
<configuration>
|
||||
<jdkName>1.4</jdkName>
|
||||
<exclude>target,test-output,.clover</exclude>
|
||||
<useShortDependencyNames>true</useShortDependencyNames>
|
||||
<libraries>
|
||||
<library>
|
||||
<name>xwork</name>
|
||||
<sources>file://$xwork$/src/java</sources>
|
||||
</library>
|
||||
<library>
|
||||
<name>xwork-tiger</name>
|
||||
<sources>file://$xwork$/tiger/src/java</sources>
|
||||
</library>
|
||||
</libraries>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.struts.action2</groupId>
|
||||
<artifactId>action</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user