henning 2002/12/14 03:26:07 Modified: configuration build.xml project.xml Log: - Updated Version to 1.0-dev-2, because we do incompatible changes to 1.0-dev and I try to avoid a "commons-lang" desaster. :-) - cleaned up the autogenerated properties in build.xml a bit - updated the jar versions required for building to the current versions of various packages Revision Changes Path 1.5 +19 -32 jakarta-commons-sandbox/configuration/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/configuration/build.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- build.xml 3 Dec 2002 14:03:53 -0000 1.4 +++ build.xml 14 Dec 2002 11:26:07 -0000 1.5 @@ -1,14 +1,20 @@ <?xml version="1.0" encoding="UTF-8"?> +<!-- ===================================================================== --> +<!-- --> +<!-- $Id$ --> +<!-- --> +<!-- ===================================================================== --> + <project default="jar" name="commons-configuration" basedir="."> - <property name="defaulttargetdir" value="target"></property> - <property name="classesdir" value="target/classes"></property> - <property name="testclassesdir" value="target/test-classes"></property> - <property name="testreportdir" value="target/test-reports"></property> - <property name="distdir" value="dist"></property> - <property name="javadocdir" value="target/docs/apidocs"></property> - <property name="final.name" value="commons-configuration-1.0-dev"></property> + <property name="defaulttargetdir" value="target"/> + <property name="classesdir" value="target/classes"/> + <property name="testclassesdir" value="target/test-classes"/> + <property name="testreportdir" value="target/test-reports"/> + <property name="distdir" value="dist"/> + <property name="javadocdir" value="target/docs/apidocs"/> + <property name="final.name" value="commons-configuration-1.0-dev-2"/> <target name="init" description="o Initializes some properties"> @@ -108,9 +114,9 @@ <format pattern="2001-yyyy" property="year"></format> </tstamp> - <property name="copyright" value="Copyright &copy; Apache Software Foundation. All Rights Reserved."></property> + <property name="copyright" value="Copyright &copy; Apache Software Foundation. All Rights Reserved."/> - <property name="title" value="commons-configuration 1.0-dev API"></property> + <property name="title" value="${final.name} API"/> <javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="src/java" packagenames="org.apache.commons.configuration.*"> <classpath> @@ -128,30 +134,11 @@ <mkdir dir="lib"></mkdir> <get dest="lib/commons-collections-2.0.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-collections/jars/commons-collections-2.0.jar"></get> - <get dest="lib/commons-lang-1.0-b1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-lang/jars/commons-lang-1.0-b1.jar"></get> - <get dest="lib/junit-3.7.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.7.jar"></get> - <get dest="lib/xercesImpl-2.0.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/xerces/jars/xercesImpl-2.0.2.jar"></get> - <get dest="lib/xmlParserAPIs-2.0.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/xml-apis/jars/xmlParserAPIs-2.0.2.jar"></get> - - </target> - - - - - - + <get dest="lib/commons-lang-1.0.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-lang/jars/commons-lang-1.0.1.jar"></get> + <get dest="lib/junit-3.8.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/junit/jars/junit-3.8.1.jar"></get> + <get dest="lib/xerces-2.2.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/xerces/jars/xerces-2.2.1.jar"></get> + <get dest="lib/xml-apis-2.2.1.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/xml-apis/jars/xml-apis-2.2.1.jar"></get> - - - - <target name="install-maven"> - - - - <get dest="${user.home}/maven-install-latest.jar" usetimestamp="true" src="${maven.repo.remote}/maven/maven-install-latest.jar"></get> - - <unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar"></unjar> - </target> </project> 1.13 +14 -7 jakarta-commons-sandbox/configuration/project.xml Index: project.xml =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/configuration/project.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- project.xml 10 Dec 2002 23:25:53 -0000 1.12 +++ project.xml 14 Dec 2002 11:26:07 -0000 1.13 @@ -1,10 +1,16 @@ <?xml version="1.0"?> -<project> +<!-- ===================================================================== --> +<!-- --> +<!-- $Id$ --> +<!-- --> +<!-- ===================================================================== --> + +<project> <pomVersion>3</pomVersion> <name>commons-configuration</name> <id>commons-configuration</id> - <currentVersion>1.0-dev</currentVersion> + <currentVersion>1.0-dev-2</currentVersion> <organization> <name>Apache Software Foundation</name> <url>http://jakarta.apache.org/</url> @@ -92,31 +98,32 @@ </dependency> <dependency> <id>commons-lang</id> - <version>1.0-b1</version> + <version>1.0.1</version> </dependency> <!-- <dependency> <id>commons-logging</id> - <version>1.0.1</version> + <version>1.0.2</version> </dependency> --> <dependency> <id>junit</id> - <version>3.7</version> + <version>3.8.1</version> <url>http://www.junit.org</url> </dependency> <dependency> <id>xerces</id> - <version>2.0.2</version> + <version>2.2.1</version> <url>http://xml.apache.org/xerces2-j/</url> </dependency> <dependency> <id>xml-apis</id> - <version>2.0.2</version> + <version>2.2.1</version> <url>http://xml.apache.org/xerces2-j/</url> </dependency> + </dependencies> <build>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>