Update of /usr/local/cvs-repository/maven/commons-util
In directory eng.werken.com:/tmp/cvs-serv18479/commons-util
Modified Files:
project.xml
Log Message:
Added initial project xml's for these projects. Collections currently has
a unit test problem, so unable to be too sure this one works.
I'm checking them against the current CVS of Maven.
Index: project.xml
===================================================================
RCS file: /usr/local/cvs-repository/maven/commons-util/project.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** project.xml 24 Jun 2002 23:45:41 -0000 1.3
--- project.xml 25 Jun 2002 02:24:28 -0000 1.4
***************
*** 1,86 ****
<project>
! <pomVersion>3</pomVersion>
<name>commons-util</name>
<id>commons-util</id>
! <currentVersion></currentVersion>
<organization>
! <name></name>
! <url></url>
! <logo></logo>
</organization>
<description>
! Commons Utility Package
</description>
- <shortDescription></shortDescription>
- <package>org.apache.commons.util</package>
- <inceptionYear></inceptionYear>
-
- <url>http://jakarta.apache.org/commons/sandbox/messenger/</url>
- <issueTrackingUrl></issueTrackingUrl>
- <siteAddress></siteAddress>
- <siteDirectory></siteDirectory>
- <distributionDirectory></distributionDirectory>
-
- <repository>
- <url></url>
-
<connection>:pserver:[email protected]:/home/cvspublic:jakarta-commons-sandbox/util</connection>
- <password>anoncvs</password>
- </repository>
! <versions>
! <version>
! <id>dev</id>
! <name>dev</name>
! <tag>HEAD</tag>
! </version>
! </versions>
!
! <branches/>
- <mailingLists>
- <mailingList>
- <name></name>
- <subscribe></subscribe>
- <unsubscribe></unsubscribe>
- <archive></archive>
- </mailingList>
- </mailingLists>
-
<developers>
-
<developer>
! <name></name>
! <id></id>
<email></email>
<organization></organization>
</developer>
-
</developers>
! <dependencies/>
!
! <build>
<sourceDirectory>src/java</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
! <integrationUnitTestSourceDirectory/>
! <aspectSourceDirectory></aspectSourceDirectory>
!
! <!-- Unit test classes -->
<unitTestPatterns>
<unitTestPattern>include = **/*Test*.java</unitTestPattern>
</unitTestPatterns>
!
! <!-- Integration unit test classes -->
! <integrationUnitTestPatterns>
! </integrationUnitTestPatterns>
!
! <jarResources>
! </jarResources>
!
! <jars>
! </jars>
!
</build>
-
</project>
--- 1,116 ----
+ <?xml version="1.0" encoding="UTF-8"?>
+
<project>
! <version>3</version>
<name>commons-util</name>
<id>commons-util</id>
! <currentVersion>1.0-rc2-dev</currentVersion>
<organization>
! <name>Apache Software Foundation</name>
! <url>http://www.apache.org</url>
</organization>
+ <inceptionYear>2002</inceptionYear>
+ <package>org.apache.commons.util</package>
+ <shortDescription>Commons Util</shortDescription>
+ <logo>http://jakarta.apache.org/commons/images/logo.jpg</logo>
+
+ <gumpRepositoryId>jakarta</gumpRepositoryId>
<description>
! The Commons Util package is home to latchkey code that one might
! expect to find in the java.util and java.text packages which does not
! fall clearly into the domain of another Commons package. The code
! housed in Util attempts to have few external dependencies (i.e. be
! miserly with the number of imports outside the core java.* package).
!
! Looking at each Commons project as a product, the Util package is a
! location for utilities that aren't large enough to necessitate the
! overhead involved with full productization (i.e. with starting a whole
! new project).
</description>
! <url>http://jakarta.apache.org/commons/</url>
! <cvsWebUrl>http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/util/</cvsWebUrl>
! <password>anoncvs</password>
! <issueTrackingUrl>http://nagoya.apache.org/</issueTrackingUrl>
! <siteAddress>jakarta.apache.org</siteAddress>
! <siteDirectory>/www/jakarta.apache.org/commons/sandbox/util/</siteDirectory>
<developers>
<developer>
! <name>Geir Magnusson, Jr.</name>
! <id>geir</id>
! <email></email>
! <organization></organization>
! </developer>
! <developer>
! <name>Scott Sanders</name>
! <id>sanders</id>
! <email></email>
! <organization></organization>
! </developer>
! <developer>
! <name>Henri Yandell</name>
! <id>bayard</id>
! <email>[EMAIL PROTECTED]</email>
! <organization></organization>
! </developer>
! <developer>
! <name>Daniel Rall</name>
! <id>dlr</id>
! <email>[EMAIL PROTECTED]</email>
! <organization>CollabNet, Inc.</organization>
! </developer>
! <developer>
! <name>Jason van Zyl</name>
! <id>jvanzyl</id>
! <email>[EMAIL PROTECTED]</email>
! <organization>Zenplex</organization>
! </developer>
! <developer>
! <name>Jon Scott Stevens</name>
! <id>jon</id>
! <email>[EMAIL PROTECTED]</email>
! <organization>CollabNet, Inc.</organization>
! </developer>
! <developer>
! <name>Aaron Smuts</name>
! <id>asmuts</id>
! <email></email>
! <organization></organization>
! </developer>
! <developer>
! <name>Leonard Richardson</name>
! <id>leonardr</id>
! <email></email>
! <organization></organization>
! </developer>
! <developer>
! <name>Kasper Nielsen</name>
! <id>knielsen</id>
<email></email>
<organization></organization>
</developer>
</developers>
! <dependencies>
+ <dependency>
+ <name>commons-lang</name>
+ <type>required</type>
+ <version>0.1</version>
+ <jar>commons-lang-0.1-dev.jar</jar>
+ </dependency>
+
+ </dependencies>
+
+ <build>
<sourceDirectory>src/java</sourceDirectory>
<unitTestSourceDirectory>src/test</unitTestSourceDirectory>
! <aspectSourceDirectories></aspectSourceDirectories>
<unitTestPatterns>
<unitTestPattern>include = **/*Test*.java</unitTestPattern>
</unitTestPatterns>
! <jarResources></jarResources>
! <jars></jars>
</build>
</project>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>