You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by jo...@apache.org on 2006/01/08 02:59:07 UTC

svn commit: r366972 - in /webservices/commons/trunk/util: .classpath .project build.xml pom.xml project.properties project.xml

Author: jochen
Date: Sat Jan  7 17:58:59 2006
New Revision: 366972

URL: http://svn.apache.org/viewcvs?rev=366972&view=rev
Log:
Migration to Maven 2. First public announcement.


Added:
    webservices/commons/trunk/util/pom.xml
Removed:
    webservices/commons/trunk/util/build.xml
    webservices/commons/trunk/util/project.properties
    webservices/commons/trunk/util/project.xml
Modified:
    webservices/commons/trunk/util/.classpath
    webservices/commons/trunk/util/.project

Modified: webservices/commons/trunk/util/.classpath
URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/util/.classpath?rev=366972&r1=366971&r2=366972&view=diff
==============================================================================
--- webservices/commons/trunk/util/.classpath (original)
+++ webservices/commons/trunk/util/.classpath Sat Jan  7 17:58:59 2006
@@ -1,16 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <classpath>
-  <classpathentry excluding="" kind="src" path="src/java">
-  </classpathentry>
-  <classpathentry output="target/test-classes" kind="src" path="src/test">
-  </classpathentry>
-  <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.1.jar">
-  </classpathentry>
-  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
-  </classpathentry>
-  <classpathentry kind="var" path="MAVEN_REPO/xml-apis/jars/xml-apis-1.3.02.jar">
-  </classpathentry>
-  <classpathentry kind="output" path="target/classes">
-  </classpathentry>
-</classpath>
\ No newline at end of file
+	<classpathentry kind="src" path="src/java"/>
+	<classpathentry output="target/test-classes" kind="src" path="src/test"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>

Modified: webservices/commons/trunk/util/.project
URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/util/.project?rev=366972&r1=366971&r2=366972&view=diff
==============================================================================
--- webservices/commons/trunk/util/.project (original)
+++ webservices/commons/trunk/util/.project Sat Jan  7 17:58:59 2006
@@ -1,18 +1,23 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <projectDescription>
-  <name>ws-commons-util</name>
-  <comment>These classes are used for creating and reading XML with JAXP 1.1. In other words, without the javax.xml.transform package.</comment>
-  <projects>
-  </projects>
-  <buildSpec>
-    <buildCommand>
-      <name>org.eclipse.jdt.core.javabuilder</name>
-      <arguments>
-      </arguments>
-    </buildCommand>
-  </buildSpec>
-  <natures>
-    <nature>org.eclipse.jdt.core.javanature</nature>
-  </natures>
-</projectDescription>
\ No newline at end of file
+	<name>ws-commons-util</name>
+	<comment>These classes are used for creating and reading XML with JAXP 1.1. In other words, without the javax.xml.transform package.</comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.maven.ide.eclipse.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>org.maven.ide.eclipse.maven2Nature</nature>
+	</natures>
+</projectDescription>

Added: webservices/commons/trunk/util/pom.xml
URL: http://svn.apache.org/viewcvs/webservices/commons/trunk/util/pom.xml?rev=366972&view=auto
==============================================================================
--- webservices/commons/trunk/util/pom.xml (added)
+++ webservices/commons/trunk/util/pom.xml Sat Jan  7 17:58:59 2006
@@ -0,0 +1,128 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.ws.commons</groupId>
+    <artifactId>ws-commons-util</artifactId>
+    <name>Apache WebServices Common Utilities</name>
+    <version>1.0-SNAPSHOT</version>
+    <description>
+        This is a small collection of utility classes, that allow
+        high performance XML processing based on SAX. Basically,
+        it is assumed, that you are using an JAXP 1.1 compliant
+        XML parser and nothing else. In particular, no dependency
+        on the javax.xml.transform package is introduced.
+    </description>
+    <url>http://ws.apache.org/commons/util</url>
+    <issueManagement>
+        <system>jira</system>
+        <url>http://issues.apache.org/jira/browse/XMLRPC</url>
+    </issueManagement>
+    <inceptionYear>2005</inceptionYear>
+    <mailingLists>
+      <mailingList>
+        <name>XML-RPC Users</name>
+        <subscribe>xmlrpc-user-subscribe@ws.apache.org</subscribe>
+        <unsubscribe>xmlrpc-user-unsubscribe@ws.apache.org</unsubscribe>
+        <post>xmlrpc-user@ws.apache.org</post>
+        <archive>http://mail-archives.apache.org/mod_mbox/ws-xmlrpc-user/</archive>
+        <otherArchives>
+          <otherArchive>http://marc.theaimsgroup.com/?l=xmlrpc-user</otherArchive>
+        </otherArchives>
+      </mailingList>
+      <mailingList>
+        <name>XML-RPC Developers</name>
+        <subscribe>xmlrpc-dev-subscribe@ws.apache.org</subscribe>
+        <unsubscribe>xmlrpc-dev-unsubscribe@ws.apache.org</unsubscribe>
+        <post>xmlrpc-dev@ws.apache.org</post>
+        <archive>http://mail-archives.apache.org/mod_mbox/ws-xmlrpc-dev/</archive>
+        <otherArchives>
+          <otherArchive>http://marc.theaimsgroup.com/?l=xmlrpc-dev</otherArchive>
+        </otherArchives>
+      </mailingList>
+    </mailingLists>
+    <developers>
+        <developer>
+            <name>Jochen Wiedmann</name>
+            <id>jochen</id>
+            <email>jochen.wiedmann@gmail.com</email>
+        </developer>
+    </developers>
+    <licenses>
+        <license>
+            <name>The Apache Software License, Version 2.0</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/commons/trunk/util</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/commons/trunk/util</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/webservices/commons/trunk/util</url>
+    </scm>
+    <organization>
+        <name>Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <testSourceDirectory>src/test</testSourceDirectory>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-eclipse-plugin</artifactId>
+                <configuration>
+                    <downloadSources>true</downloadSources>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>2.1-SNAPSHOT</version>
+                <configuration>
+                    <descriptorRefs>
+                        <value>bin</value>
+                        <value>src</value>
+                    </descriptorRefs>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.1</version>
+        </dependency>
+        <dependency>
+            <groupId>xml-apis</groupId>
+            <artifactId>xml-apis</artifactId>
+            <version>1.0.b2</version>
+        </dependency>
+    </dependencies>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </reporting>
+    <distributionManagement>
+        <repository>
+            <id>apache-maven</id>
+            <name>Apache Maven Repository</name>
+            <url>scp://people.apache.org/www/www.apache.org/dist/maven-repository</url>
+        </repository>
+        <snapshotRepository>
+            <uniqueVersion>false</uniqueVersion>
+            <id>apache-maven-snapshots</id>
+            <name>Apache Maven Snapshot Repository</name>
+            <url>scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
+        </snapshotRepository>
+        <site>
+            <id>commons-util-site</id>
+            <name>WebServices Site / Commons/ Util</name>
+            <url>scp://people.apache.org/www/ws.apache.org/commons/util</url>
+        </site>
+    </distributionManagement>
+</project>