Author: wsmoak Date: Sat Jun 10 09:47:20 2006 New Revision: 413329 URL: http://svn.apache.org/viewvc?rev=413329&view=rev Log: [SHALE-179] Maven 2 reorg - move resources and add a pom for mailreader.
Added: struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml (with props) struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/src/main/resources/org/apache/shale/examples/mailreader/ApplicationResources.properties - copied unchanged from r413326, struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/src/main/java/org/apache/shale/examples/mailreader/ApplicationResources.properties struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/src/main/resources/org/apache/shale/examples/mailreader/ApplicationResources_ja.properties - copied unchanged from r413326, struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/src/main/java/org/apache/shale/examples/mailreader/ApplicationResources_ja.properties struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/src/main/resources/org/apache/shale/examples/mailreader/ApplicationResources_ru.properties - copied unchanged from r413326, struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/src/main/java/org/apache/shale/examples/mailreader/ApplicationResources_ru.properties Removed: struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/src/main/java/org/apache/shale/examples/mailreader/ApplicationResources.properties struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/src/main/java/org/apache/shale/examples/mailreader/ApplicationResources_ja.properties struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/src/main/java/org/apache/shale/examples/mailreader/ApplicationResources_ru.properties Added: struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml URL: http://svn.apache.org/viewvc/struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml?rev=413329&view=auto ============================================================================== --- struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml (added) +++ struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml Sat Jun 10 09:47:20 2006 @@ -0,0 +1,97 @@ +<!-- +/* + * Copyright 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$ + */ +--> +<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.shale</groupId> + <artifactId>shale-apps</artifactId> + <version>1.0.3-SNAPSHOT</version> + </parent> + <artifactId>shale-mailreader</artifactId> + <packaging>war</packaging> + <name>Shale Mailreader Sample App</name> + <url>http://struts.apache.org/struts-shale</url> + + <dependencies> + + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-core</artifactId> + <version>${version}</version> + </dependency> + + <dependency> + <groupId>org.apache.struts.shale</groupId> + <artifactId>shale-test</artifactId> + <version>${version}</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jstl</artifactId> + <version>1.1.2</version> + </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.4</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>jsp-api</artifactId> + <version>2.0</version> + <scope>provided</scope> + </dependency> + + <dependency> + <groupId>taglibs</groupId> + <artifactId>standard</artifactId> + <version>1.1.2</version> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.apache.struts.action</groupId> + <artifactId>struts-mailreader-dao</artifactId> + <version>1.3.4</version> + </dependency> + + <!-- Avoid transitive dependency --> + <dependency> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + <version>2.0.2</version> + <scope>provided</scope> + </dependency> + + </dependencies> + +</project> Propchange: struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml ------------------------------------------------------------------------------ svn:executable = * Propchange: struts/shale/branches/mvn_reorg/shale-apps/shale-mailreader/pom.xml ------------------------------------------------------------------------------ svn:keywords = Date Author Id Revision HeadURL