Author: jukka
Date: Fri Feb 6 00:21:24 2009
New Revision: 741353
URL: http://svn.apache.org/viewvc?rev=741353&view=rev
Log:
xml: Added initial Maven 2 build
Added:
commons/sandbox/xml/trunk/pom.xml (with props)
commons/sandbox/xml/trunk/src/
commons/sandbox/xml/trunk/src/main/
commons/sandbox/xml/trunk/src/main/java/
commons/sandbox/xml/trunk/src/main/java/org/
commons/sandbox/xml/trunk/src/main/java/org/apache/
commons/sandbox/xml/trunk/src/main/java/org/apache/commons/
commons/sandbox/xml/trunk/src/main/java/org/apache/commons/xml/
commons/sandbox/xml/trunk/src/test/
commons/sandbox/xml/trunk/src/test/java/
commons/sandbox/xml/trunk/src/test/java/org/
commons/sandbox/xml/trunk/src/test/java/org/apache/
commons/sandbox/xml/trunk/src/test/java/org/apache/commons/
commons/sandbox/xml/trunk/src/test/java/org/apache/commons/xml/
Modified:
commons/sandbox/xml/trunk/ (props changed)
Propchange: commons/sandbox/xml/trunk/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Feb 6 00:21:24 2009
@@ -0,0 +1,5 @@
+target
+.*
+*.iml
+*.ipr
+*.iws
Added: commons/sandbox/xml/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/sandbox/xml/trunk/pom.xml?rev=741353&view=auto
==============================================================================
--- commons/sandbox/xml/trunk/pom.xml (added)
+++ commons/sandbox/xml/trunk/pom.xml Fri Feb 6 00:21:24 2009
@@ -0,0 +1,64 @@
+<?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">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-sandbox-parent</artifactId>
+ <version>7</version>
+ </parent>
+
+ <artifactId>commons-xml</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <name>Commons XML (Sandbox)</name>
+ <inceptionYear>2009</inceptionYear>
+ <description>
+ Library of reusable utility code for working with JAXP.
+ </description>
+
+ <url>http://commons.apache.org/sandbox/xml/</url>
+
+ <scm>
+ <connection>
+ scm:svn:http://svn.apache.org/repos/asf/commons/sandbox/xml/trunk/
+ </connection>
+ <developerConnection>
+ scm:svn:https://svn.apache.org/repos/asf/commons/sandbox/xml/trunk/
+ </developerConnection>
+ <url>
+ http://svn.apache.org/viewvc/commons/sandbox/xml/trunk/
+ </url>
+ </scm>
+
+ <distributionManagement>
+ <site>
+ <id>people.apache.org</id>
+ <name>Commons XML</name>
+ <url>
+
${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/sandbox/xml
+ </url>
+ </site>
+ </distributionManagement>
+
+</project>
Propchange: commons/sandbox/xml/trunk/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native