Author: dennisl
Date: Fri Aug  9 10:20:58 2013
New Revision: 1512234

URL: http://svn.apache.org/r1512234
Log:
Start a new shared component for mapping stuff.
The first addition will be the file name mapping code from Maven WAR Plugin.

Added:
    maven/shared/trunk/maven-mapping/
    maven/shared/trunk/maven-mapping/pom.xml   (with props)

Added: maven/shared/trunk/maven-mapping/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-mapping/pom.xml?rev=1512234&view=auto
==============================================================================
--- maven/shared/trunk/maven-mapping/pom.xml (added)
+++ maven/shared/trunk/maven-mapping/pom.xml Fri Aug  9 10:20:58 2013
@@ -0,0 +1,110 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you 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.
+-->
+<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/xsd/maven-4.0.0.xsd";>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.shared</groupId>
+    <artifactId>maven-shared-components</artifactId>
+    <version>19</version>
+    <relativePath>../maven-shared-components/pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.shared</groupId>
+  <artifactId>maven-mapping</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>jar</packaging>
+
+  <name>Apache Maven Mapping</name>
+  <description>A shared component to assist in interpolating file names using 
properties from a Maven project.</description>
+
+  <prerequisites>
+    <maven>${mavenVersion}</maven>
+  </prerequisites>
+
+  <scm>
+    
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/shared/trunk/maven-mapping</connection>
+    
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/shared/trunk/maven-mapping</developerConnection>
+    <url>http://svn.apache.org/viewvc/maven/shared/trunk/maven-mapping</url>
+  </scm>
+  <issueManagement>
+    <system>jira</system>
+    <url>http://jira.codehaus.org/browse/MSHARED/component/16150</url>
+  </issueManagement>
+  
+  <properties>
+    <mavenVersion>2.0.6</mavenVersion>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-artifact</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-interpolation</artifactId>
+      <version>1.15</version>
+    </dependency>
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.11</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.plugin-testing</groupId>
+      <artifactId>maven-plugin-testing-harness</artifactId>
+      <version>1.2</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <profiles>
+    <profile>
+      <id>reporting</id>
+      <reporting>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-changes-plugin</artifactId>
+            <version>2.9</version>
+            <configuration>
+              
<columnNames>Type,Key,Summary,Assignee,Status,Resolution,Created</columnNames>
+              <maxEntries>200</maxEntries>
+              <onlyCurrentVersion>true</onlyCurrentVersion>
+              <sortColumnNames>Key</sortColumnNames>
+              <versionPrefix>maven-mapping-</versionPrefix>
+            </configuration>
+            <reportSets>
+              <reportSet>
+                <reports>
+                  <report>jira-report</report>
+                </reports>
+              </reportSet>
+            </reportSets>
+          </plugin>
+        </plugins>
+      </reporting>
+    </profile>
+  </profiles>
+</project>

Propchange: maven/shared/trunk/maven-mapping/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/shared/trunk/maven-mapping/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author Id


Reply via email to