You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/01/25 17:59:11 UTC

svn commit: r1063352 - in /commons/sandbox/digester3/trunk: pom.xml src/ src/main/ src/main/java/ src/main/resources/ src/test/ src/test/java/ src/test/resources/

Author: simonetripodi
Date: Tue Jan 25 16:59:10 2011
New Revision: 1063352

URL: http://svn.apache.org/viewvc?rev=1063352&view=rev
Log:
added the digester3 mvn archetype

Added:
    commons/sandbox/digester3/trunk/pom.xml   (with props)
    commons/sandbox/digester3/trunk/src/
    commons/sandbox/digester3/trunk/src/main/
    commons/sandbox/digester3/trunk/src/main/java/
    commons/sandbox/digester3/trunk/src/main/resources/
    commons/sandbox/digester3/trunk/src/test/
    commons/sandbox/digester3/trunk/src/test/java/
    commons/sandbox/digester3/trunk/src/test/resources/

Added: commons/sandbox/digester3/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/pom.xml?rev=1063352&view=auto
==============================================================================
--- commons/sandbox/digester3/trunk/pom.xml (added)
+++ commons/sandbox/digester3/trunk/pom.xml Tue Jan 25 16:59:10 2011
@@ -0,0 +1,106 @@
+<?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/maven-v4_0_0.xsd">
+
+    <parent>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-parent</artifactId>
+        <version>17</version>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <name>Commons Digester</name>
+    <groupId>org.apache.commons</groupId>
+    <artifactId>commons-digester3</artifactId>
+    <version>3.0-SNAPSHOT</version>
+
+    <inceptionYear>2011</inceptionYear>
+    <description>
+        The Digester package lets you configure an XML to Java object mapping module
+        which triggers certain actions called rules whenever a particular 
+        pattern of nested XML elements is recognized.
+    </description>
+
+    <url>http://commons.apache.org/digester/</url>
+
+    <issueManagement>
+        <system>jira</system>
+        <url>http://issues.apache.org/jira/browse/DIGESTER</url>
+    </issueManagement>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/digester/trunk</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/digester/trunk</developerConnection>
+        <url>http://svn.apache.org/viewvc/commons/proper/digester/trunk</url>
+    </scm>
+
+    <distributionManagement>
+        <!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
+        <site>
+            <id>apache.website</id>
+            <name>Apache Commons Site</name>
+            <url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/digester</url>
+        </site>
+    </distributionManagement>
+
+    <properties>
+        <maven.compile.source>1.5</maven.compile.source>
+        <maven.compile.target>1.5</maven.compile.target>
+        <commons.componentid>digester</commons.componentid>
+        <commons.release.version>3-0</commons.release.version>
+        <commons.release.desc>(minium JDK 1.5)</commons.release.desc>
+        <commons.release.2.version>2.1</commons.release.2.version>
+        <commons.release.2.desc>(minimum JDK 1.5)</commons.release.2.desc>
+        <commons.rc.version>RC1</commons.rc.version>
+        <commons.jira.id>DIGESTER</commons.jira.id>
+        <commons.jira.pid>12310471</commons.jira.pid>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>commons-beanutils</groupId>
+            <artifactId>commons-beanutils</artifactId>
+            <version>1.8.3</version>
+        </dependency>
+
+        <dependency> 
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1.1</version>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.8.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>${basedir}/src/main/resources</directory>
+            </resource>
+        </resources>
+    </build>
+
+</project>

Propchange: commons/sandbox/digester3/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/digester3/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: commons/sandbox/digester3/trunk/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml