Author: wsmoak
Date: Tue Dec 27 16:31:21 2005
New Revision: 359333
URL: http://svn.apache.org/viewcvs?rev=359333&view=rev
Log:
Added experimental Maven 2 build files: parent pom and struts-action
Added:
struts/action/trunk/pom.xml (with props)
struts/build/trunk/pom.xml (with props)
Added: struts/action/trunk/pom.xml
URL:
http://svn.apache.org/viewcvs/struts/action/trunk/pom.xml?rev=359333&view=auto
==============================================================================
--- struts/action/trunk/pom.xml (added)
+++ struts/action/trunk/pom.xml Tue Dec 27 16:31:21 2005
@@ -0,0 +1,185 @@
+<?xml version="1.0"?>
+<!--
+/*
+ * Copyright 2005 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$
+ */
+-->
+
+<!--
+ Experimental Maven 2 Build for Apache Struts
+ ============================================
+
+To build and install this module into your local repo:
+
+ $ mvn install
+
+For more information, see: http://wiki.apache.org/struts/StrutsMaven2Plan
+
+-->
+
+<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">
+
+ <parent>
+ <groupId>org.apache.struts</groupId>
+ <artifactId>struts</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ <relativePath>build/pom.xml</relativePath>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.struts</groupId>
+ <artifactId>struts-action</artifactId>
+ <packaging>jar</packaging>
+ <version>1.3.0-SNAPSHOT</version>
+ <name>Struts Action Framework</name>
+ <url>http://struts.apache.org</url>
+
+ <scm>
+
<connection>svm:svn:http://svn.apache.org/repos/asf/struts/action/trunk</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/struts/action/trunk</developerConnection>
+ <url>http://svn.apache.org/repos/asf/struts/action/trunk</url>
+ </scm>
+
+ <build>
+
+ <sourceDirectory>src/java</sourceDirectory>
+ <testSourceDirectory>src/test</testSourceDirectory>
+
+ <resources>
+ <resource>
+ <directory>src/java</directory>
+ <includes>
+ <include>**/*.properties</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>conf/java</directory>
+ <targetPath>org/apache/struts/resources</targetPath>
+ <includes>
+ <include>**/*.dtd</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>conf/java</directory>
+ <targetPath>org/apache/struts/chain</targetPath>
+ <includes>
+ <include>chain-config.xml</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>conf/java</directory>
+ <targetPath>org/apache/struts/validator</targetPath>
+ <includes>
+ <include>validator-rules.xml</include>
+ </includes>
+ </resource>
+ <resource>
+ <directory>build</directory>
+ <includes>
+ <include>LICENSE.txt</include>
+ <include>NOTICE.txt</include>
+ </includes>
+ </resource>
+ </resources>
+
+ <testResources>
+ <testResource>
+ <targetPath>org/apache/struts/resources</targetPath>
+ <directory>conf/java</directory>
+ <includes>
+ <include>**/*.xml</include>
+ <include>**/*.dtd</include>
+ </includes>
+ </testResource>
+ <testResource>
+ <directory>src/test</directory>
+ <includes>
+ <include>**/*.xml</include>
+ </includes>
+ </testResource>
+ </testResources>
+
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>antlr</groupId>
+ <artifactId>antlr</artifactId>
+ <version>2.7.2</version>
+ </dependency>
+ <dependency>
+ <groupId>cglib</groupId>
+ <artifactId>cglib-nodep</artifactId>
+ <version>2.1_3</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>commons-beanutils</groupId>
+ <artifactId>commons-beanutils</artifactId>
+ <version>1.7.0</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-chain</groupId>
+ <artifactId>commons-chain</artifactId>
+ <version>1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ <version>3.0</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ <version>1.6</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-fileupload</groupId>
+ <artifactId>commons-fileupload</artifactId>
+ <version>1.0</version>
+ <optional>true</optional>
+ </dependency>
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.0.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-validator</groupId>
+ <artifactId>commons-validator</artifactId>
+ <version>1.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>javax.servlet</groupId>
+ <artifactId>servlet-api</artifactId>
+ <version>2.3</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ </dependency>
+ <dependency>
+ <groupId>oro</groupId>
+ <artifactId>oro</artifactId>
+ <version>2.0.8</version>
+ </dependency>
+ </dependencies>
+
+</project>
Propchange: struts/action/trunk/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: struts/action/trunk/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
Added: struts/build/trunk/pom.xml
URL:
http://svn.apache.org/viewcvs/struts/build/trunk/pom.xml?rev=359333&view=auto
==============================================================================
--- struts/build/trunk/pom.xml (added)
+++ struts/build/trunk/pom.xml Tue Dec 27 16:31:21 2005
@@ -0,0 +1,291 @@
+<?xml version="1.0"?>
+<!--
+/*
+ * Copyright 2005 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$
+ */
+-->
+
+<!--
+ Experimental Maven 2 Build for Apache Struts
+ ============================================
+
+To build and install this parent pom and its modules into your local repo:
+
+ $ mvn install
+
+For more information, see: http://wiki.apache.org/struts/StrutsMaven2Plan
+
+-->
+
+<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>struts</artifactId>
+ <version>1.3.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>Apache Struts</name>
+ <url>http://struts.apache.org</url>
+
+ <inceptionYear>2000</inceptionYear>
+
+ <issueManagement>
+ <system>Bugzilla</system>
+ <url>http://issues.apache.org/bugzilla</url>
+ </issueManagement>
+
+ <ciManagement/>
+
+ <mailingLists>
+ <mailingList>
+ <name>Struts User List</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+ <post>[email protected]</post>
+
<archive>http://mail-archives.apache.org/mod_mbox/struts-user/</archive>
+ <otherArchives>
+
<otherArchive>http://struts.apache.org/mail.html#Archives</otherArchive>
+ </otherArchives>
+ </mailingList>
+ <mailingList>
+ <name>Struts Developer List</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+ <post>[email protected]</post>
+
<archive>http://mail-archives.apache.org/mod_mbox/struts-dev/</archive>
+ <otherArchives>
+
<otherArchive>http://struts.apache.org/mail.html#Archives</otherArchive>
+ </otherArchives>
+ </mailingList>
+ </mailingLists>
+
+ <developers>
+ <developer>
+ <name>Craig R. McClanahan</name>
+ <id>craigmcc</id>
+ <email>craigmcc at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Ted Husted</name>
+ <id>husted</id>
+ <email>husted at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Cedric Dumoulin</name>
+ <id>cedric</id>
+ <email>cedric.dumoulin at lifl.fr</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Martin Cooper</name>
+ <id>martinc</id>
+ <email>martinc at apache.org</email>
+ <roles>
+ <role>PMC Chair</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>James Holmes</name>
+ <id>jholmes</id>
+ <email>jholmes at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>David M. Karr</name>
+ <id>dmkarr</id>
+ <email>dmkarr at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Eddie Bush</name>
+ <id>ekbush</id>
+ <email>ekbush at apache.org</email>
+ <roles>
+ <role>Committer</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>David Graham</name>
+ <id>dgraham</id>
+ <email>dgraham at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>James Mitchell</name>
+ <id>jmitchell</id>
+ <email>jmitchell at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Don Brown</name>
+ <id>mrdon</id>
+ <email>mrdon at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Joe Germuska</name>
+ <id>germuska</id>
+ <email>germuska at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Niall Pemberton</name>
+ <id>niallp</id>
+ <email>niallp at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Hubert Rabago</name>
+ <id>hrabago</id>
+ <email>hrabago at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>David Geary</name>
+ <id>dgeary</id>
+ <email>dgeary at apache.org</email>
+ <roles>
+ <role>Committer</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Wendy Smoak</name>
+ <id>wsmoak</id>
+ <email>wsmoak at apache.org</email>
+ <roles>
+ <role>PMC Member</role>
+ </roles>
+ <timezone>-7</timezone>
+ </developer>
+ <developer>
+ <name>Gary VanMatre</name>
+ <id>gvanmatre</id>
+ <email>gvanmatre at apache.org</email>
+ <roles>
+ <role>Committer</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Sean Schofield</name>
+ <id>schof</id>
+ <email>schof at apache.org</email>
+ <roles>
+ <role>Committer</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Greg Reddin</name>
+ <id>greddin</id>
+ <email>greddin at apache.org</email>
+ <roles>
+ <role>Committer</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Laurie Harper</name>
+ <id>laurieh</id>
+ <email>laurieh at apache.org</email>
+ <roles>
+ <role>Committer</role>
+ </roles>
+ </developer>
+ <developer>
+ <name>Richard Feit</name>
+ <id>rich</id>
+ <email>rich at apache.org</email>
+ <roles>
+ <role>Committer</role>
+ </roles>
+ </developer>
+ </developers>
+
+ <profiles/>
+
+ <modules>
+ <module>../action</module>
+ <!--module>../taglib</module-->
+ <!--module>../el</module-->
+ <!--module>../tiles</module-->
+ <!--module>../apps</module-->
+ </modules>
+
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ <comments/>
+ </license>
+ </licenses>
+
+ <organization>
+ <name>Apache Software Foundation</name>
+ <url>http://www.apache.org</url>
+ </organization>
+
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+ <dependencies/>
+
+ <repositories>
+ <repository>
+ <id>apache-internal</id>
+ <name>Apache Internal Repository</name>
+ <url>http://cvs.apache.org/repository</url>
+ <layout>legacy</layout>
+ </repository>
+ </repositories>
+
+</project>
Propchange: struts/build/trunk/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: struts/build/trunk/pom.xml
------------------------------------------------------------------------------
svn:keywords = Date Author Id Revision HeadURL
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]