Author: mrdon Date: Thu Apr 6 17:47:59 2006 New Revision: 392139 URL: http://svn.apache.org/viewcvs?rev=392139&view=rev Log: Converting mailreader to maven 2
Added: struts/action/trunk/apps/mailreader/pom.xml struts/action/trunk/apps/mailreader/src/main/ struts/action/trunk/apps/mailreader/src/main/java/ - copied from r392138, struts/action/trunk/apps/mailreader/src/java/ struts/action/trunk/apps/mailreader/src/main/resources/ - copied from r392138, struts/action/trunk/apps/mailreader/src/resources/ struts/action/trunk/apps/mailreader/src/main/webapp/ - copied from r392138, struts/action/trunk/apps/mailreader/src/webapp/ Removed: struts/action/trunk/apps/mailreader/src/java/ struts/action/trunk/apps/mailreader/src/resources/ struts/action/trunk/apps/mailreader/src/webapp/ Modified: struts/action/trunk/apps/pom.xml Added: struts/action/trunk/apps/mailreader/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/mailreader/pom.xml?rev=392139&view=auto ============================================================================== --- struts/action/trunk/apps/mailreader/pom.xml (added) +++ struts/action/trunk/apps/mailreader/pom.xml Thu Apr 6 17:47:59 2006 @@ -0,0 +1,72 @@ +<?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: pom.xml 392117 2006-04-06 23:26:51Z wsmoak $ + */ +--> + +<!-- + 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.action</groupId> + <artifactId>struts-apps</artifactId> + <version>1.3.2-SNAPSHOT</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <artifactId>struts-mailreader</artifactId> + <packaging>war</packaging> + <name>Struts Action - Apps - Mailreader</name> + + <dependencies> + <dependency> + <groupId>${pom.groupId}</groupId> + <artifactId>struts-taglib</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>${pom.groupId}</groupId> + <artifactId>struts-extras</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>${pom.groupId}</groupId> + <artifactId>struts-mailreader-dao</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.3</version> + <scope>provided</scope> + </dependency> + </dependencies> + +</project> Modified: struts/action/trunk/apps/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/pom.xml?rev=392139&r1=392138&r2=392139&view=diff ============================================================================== --- struts/action/trunk/apps/pom.xml (original) +++ struts/action/trunk/apps/pom.xml Thu Apr 6 17:47:59 2006 @@ -51,6 +51,7 @@ <module>faces-example2</module> <module>examples</module> <module>blank</module> + <module>mailreader</module> </modules> <build> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]