Author: mrdon Date: Thu Apr 6 16:00:24 2006 New Revision: 392109 URL: http://svn.apache.org/viewcvs?rev=392109&view=rev Log: Restructuring blank for new maven 2 build
Added: struts/action/trunk/apps/blank/pom.xml struts/action/trunk/apps/blank/src/main/ struts/action/trunk/apps/blank/src/main/java/ - copied from r392094, struts/action/trunk/apps/blank/src/java/ struts/action/trunk/apps/blank/src/main/java/MessageResources.properties - copied unchanged from r392108, struts/action/trunk/apps/blank/src/java/MessageResources.properties struts/action/trunk/apps/blank/src/main/webapp/ - copied from r392094, struts/action/trunk/apps/blank/src/webapp/ struts/action/trunk/apps/blank/src/main/webapp/WEB-INF/ - copied from r392108, struts/action/trunk/apps/blank/src/webapp/WEB-INF/ struts/action/trunk/apps/blank/src/main/webapp/index.jsp - copied unchanged from r392108, struts/action/trunk/apps/blank/src/webapp/index.jsp struts/action/trunk/apps/blank/src/main/webapp/pages/ - copied from r392108, struts/action/trunk/apps/blank/src/webapp/pages/ Removed: struts/action/trunk/apps/blank/src/java/ struts/action/trunk/apps/blank/src/webapp/ Added: struts/action/trunk/apps/blank/pom.xml URL: http://svn.apache.org/viewcvs/struts/action/trunk/apps/blank/pom.xml?rev=392109&view=auto ============================================================================== --- struts/action/trunk/apps/blank/pom.xml (added) +++ struts/action/trunk/apps/blank/pom.xml Thu Apr 6 16:00:24 2006 @@ -0,0 +1,66 @@ +<?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 392080 2006-04-06 21:19:10Z 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-blank</artifactId> + <packaging>war</packaging> + <name>Struts Action - Apps - Blank</name> + + <dependencies> + <dependency> + <groupId>${pom.groupId}</groupId> + <artifactId>struts-taglib</artifactId> + <version>${pom.version}</version> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <version>2.3</version> + <scope>provided</scope> + </dependency> + </dependencies> + + <build> + <finalName>${pom.artifactId}</finalName> + </build> + +</project> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]