You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by oh...@apache.org on 2007/02/15 22:26:30 UTC

svn commit: r508161 - in /jakarta/commons/proper/configuration/trunk: RELEASE-NOTES.txt build.xml pom.xml project.xml xdocs/changes.xml xdocs/dependencies.xml

Author: oheger
Date: Thu Feb 15 13:26:29 2007
New Revision: 508161

URL: http://svn.apache.org/viewvc?view=rev&rev=508161
Log:
Updated some dependencies to match the recent available versions

Modified:
    jakarta/commons/proper/configuration/trunk/RELEASE-NOTES.txt
    jakarta/commons/proper/configuration/trunk/build.xml
    jakarta/commons/proper/configuration/trunk/pom.xml
    jakarta/commons/proper/configuration/trunk/project.xml
    jakarta/commons/proper/configuration/trunk/xdocs/changes.xml
    jakarta/commons/proper/configuration/trunk/xdocs/dependencies.xml

Modified: jakarta/commons/proper/configuration/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/configuration/trunk/RELEASE-NOTES.txt?view=diff&rev=508161&r1=508160&r2=508161
==============================================================================
--- jakarta/commons/proper/configuration/trunk/RELEASE-NOTES.txt (original)
+++ jakarta/commons/proper/configuration/trunk/RELEASE-NOTES.txt Thu Feb 15 13:26:29 2007
@@ -158,8 +158,9 @@
   the setLogger() method. This gives clients more control over a
   configuration's logging behavior.
 
-* Commons Configuration now depends on Commons Lang 2.2. Some features of
-  Lang's new text package are used.
+* Commons Configuration now depends on Commons Lang 2.2 minimum. Some features of
+  Lang's new text package are used. The dependency in the pom was set to 2.3
+  because this is the recent available version of Lang.
 
 * The dependencies to Commons Collections and Commons Digester are updated to
   use the recent available version. However older versions will still work.

Modified: jakarta/commons/proper/configuration/trunk/build.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/configuration/trunk/build.xml?view=diff&rev=508161&r1=508160&r2=508161
==============================================================================
--- jakarta/commons/proper/configuration/trunk/build.xml (original)
+++ jakarta/commons/proper/configuration/trunk/build.xml Thu Feb 15 13:26:29 2007
@@ -233,11 +233,11 @@
     </setproxy>
     <get dest="${libdir}/commons-collections-3.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-collections/jars/commons-collections-3.2.jar">
     </get>
-    <get dest="${libdir}/commons-lang-2.2.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-lang/jars/commons-lang-2.2.jar">
+    <get dest="${libdir}/commons-lang-2.3.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-lang/jars/commons-lang-2.3.jar">
     </get>
     <get dest="${libdir}/commons-logging-1.0.4.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-logging/jars/commons-logging-1.0.4.jar">
     </get>
-    <get dest="${libdir}/commons-digester-1.7.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-digester/jars/commons-digester-1.7.jar">
+    <get dest="${libdir}/commons-digester-1.8.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-digester/jars/commons-digester-1.8.jar">
     </get>
     <get dest="${libdir}/commons-beanutils-core-1.7.0.jar" usetimestamp="true" ignoreerrors="true" src="http://www.ibiblio.org/maven/commons-beanutils/jars/commons-beanutils-core-1.7.0.jar">
     </get>

Modified: jakarta/commons/proper/configuration/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/configuration/trunk/pom.xml?view=diff&rev=508161&r1=508160&r2=508161
==============================================================================
--- jakarta/commons/proper/configuration/trunk/pom.xml (original)
+++ jakarta/commons/proper/configuration/trunk/pom.xml Thu Feb 15 13:26:29 2007
@@ -195,7 +195,7 @@
     <dependency>
       <groupId>commons-lang</groupId>
       <artifactId>commons-lang</artifactId>
-      <version>2.2</version>
+      <version>2.3</version>
     </dependency>
 
     <dependency>
@@ -207,7 +207,7 @@
     <dependency>
      <groupId>commons-digester</groupId>
       <artifactId>commons-digester</artifactId>
-      <version>1.7</version>
+      <version>1.8</version>
     </dependency>
 
     <dependency>

Modified: jakarta/commons/proper/configuration/trunk/project.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/configuration/trunk/project.xml?view=diff&rev=508161&r1=508160&r2=508161
==============================================================================
--- jakarta/commons/proper/configuration/trunk/project.xml (original)
+++ jakarta/commons/proper/configuration/trunk/project.xml Thu Feb 15 13:26:29 2007
@@ -238,7 +238,7 @@
     <dependency>
       <groupId>commons-lang</groupId>
       <artifactId>commons-lang</artifactId>
-      <version>2.2</version>
+      <version>2.3</version>
       <properties>
         <war.bundle>true</war.bundle>
       </properties>
@@ -256,7 +256,7 @@
     <dependency>
      <groupId>commons-digester</groupId>
       <artifactId>commons-digester</artifactId>
-      <version>1.7</version>
+      <version>1.8</version>
       <properties>
         <war.bundle>true</war.bundle>
       </properties>

Modified: jakarta/commons/proper/configuration/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/configuration/trunk/xdocs/changes.xml?view=diff&rev=508161&r1=508160&r2=508161
==============================================================================
--- jakarta/commons/proper/configuration/trunk/xdocs/changes.xml (original)
+++ jakarta/commons/proper/configuration/trunk/xdocs/changes.xml Thu Feb 15 13:26:29 2007
@@ -32,8 +32,8 @@
         configurations was added that can be triggered through JMX.
       </action>
       <action dev="oheger" type="update">
-        The dependencies to Commons Collections and Commons Digester are
-        updated to use the recent available version. However older versions
+        The dependencies to Commons Lang, Commons Collections, and Commons Digester
+        are updated to use the recent available version. However older versions
         will still work.
       </action>
       <action dev="oheger" type="add">

Modified: jakarta/commons/proper/configuration/trunk/xdocs/dependencies.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/configuration/trunk/xdocs/dependencies.xml?view=diff&rev=508161&r1=508160&r2=508161
==============================================================================
--- jakarta/commons/proper/configuration/trunk/xdocs/dependencies.xml (original)
+++ jakarta/commons/proper/configuration/trunk/xdocs/dependencies.xml Thu Feb 15 13:26:29 2007
@@ -125,7 +125,7 @@
                   <tbody>
                     <tr>
                       <td>commons-lang</td>
-                      <td>2.2</td>
+                      <td>2.2, 2.3</td>
                     </tr>
                     <tr>
                       <td>commons-collections</td>
@@ -137,7 +137,7 @@
                     </tr>
                     <tr>
                       <td>commons-digester</td>
-                      <td>1.6, 1.7</td>
+                      <td>1.6, 1.7, 1.8</td>
                     </tr>
                     <tr>
                       <td>commons-beanutils</td>



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org