Author: mrdon Date: Fri Apr 7 14:09:35 2006 New Revision: 392399 URL: http://svn.apache.org/viewcvs?rev=392399&view=rev Log: Moving the scripting mailreader into apps
Added: struts/action/trunk/apps/scripting-mailreader/ struts/action/trunk/apps/scripting-mailreader/pom.xml struts/action/trunk/apps/scripting-mailreader/src/ struts/action/trunk/apps/scripting-mailreader/src/main/ struts/action/trunk/apps/scripting-mailreader/src/main/java/ - copied from r392395, struts/action/trunk/apps/mailreader/src/main/java/ struts/action/trunk/apps/scripting-mailreader/src/main/webapp/ - copied from r391695, struts/scripting/trunk/src/struts-example/ Removed: struts/action/trunk/apps/scripting-mailreader/src/main/java/org/apache/struts/apps/mailreader/actions/ struts/action/trunk/apps/scripting-mailreader/src/main/java/org/apache/struts/apps/mailreader/config/ struts/action/trunk/apps/scripting-mailreader/src/main/java/org/apache/struts/apps/mailreader/forms/ struts/action/trunk/apps/scripting-mailreader/src/main/java/org/apache/struts/apps/mailreader/taglib/ Added: struts/action/trunk/apps/scripting-mailreader/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/scripting-mailreader/pom.xml?rev=392399&view=auto ============================================================================== --- struts/action/trunk/apps/scripting-mailreader/pom.xml (added) +++ struts/action/trunk/apps/scripting-mailreader/pom.xml Fri Apr 7 14:09:35 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-scripting-mailreader</artifactId> + <packaging>war</packaging> + <name>Struts Action - Apps - Scripting Mailreader</name> + + <dependencies> + <dependency> + <groupId>${pom.groupId}</groupId> + <artifactId>struts-scripting</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>${pom.groupId}</groupId> + <artifactId>struts-taglib</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> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]