You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/05/16 21:53:27 UTC

svn commit: r1483534 - /commons/proper/logging/trunk/build.xml

Author: tn
Date: Thu May 16 19:53:26 2013
New Revision: 1483534

URL: http://svn.apache.org/r1483534
Log:
Align build.xml with pom.xml: update dependencies, remove -wrapper and -appender artifacts.

Modified:
    commons/proper/logging/trunk/build.xml

Modified: commons/proper/logging/trunk/build.xml
URL: http://svn.apache.org/viewvc/commons/proper/logging/trunk/build.xml?rev=1483534&r1=1483533&r2=1483534&view=diff
==============================================================================
--- commons/proper/logging/trunk/build.xml (original)
+++ commons/proper/logging/trunk/build.xml Thu May 16 19:53:26 2013
@@ -74,10 +74,10 @@
 
   <!-- The locations of necessary jar files -->
   <property name="junit.jar"               value="junit-3.8.1.jar"/>
-  <property name="log4j12.jar"             value="log4j-1.2.12.jar"/>
+  <property name="log4j12.jar"             value="log4j-1.2.17.jar"/>
   <property name="log4j13.jar"             value="log4j-1.3.0.jar"/>
   <property name="logkit.jar"              value="logkit-1.0.1.jar"/>
-  <property name="avalon-framework.jar"    value="avalon-framework-4.1.3.jar"/>
+  <property name="avalon-framework.jar"    value="avalon-framework-4.1.5.jar"/>
   <property name="servletapi.jar"          value="servletapi-2.3.jar"/>
 
 
@@ -592,14 +592,6 @@
     <copy    todir="${build.home}/tests" filtering="on">
       <fileset dir="${test.resources}" excludes="**/*.java"/>
     </copy>
-    <jar jarfile="${build.home}/commons-${component.name}-appender.jar"
-         basedir="${build.home}/tests"
-        manifest="${build.home}/conf/MANIFEST.MF">
-      <include name="org/apache/commons/logging/log4j/CustomConfig.properties"
-                 if="log4j12.present"/>
-      <include name="org/apache/commons/logging/log4j/TestAppender.class"
-                 if="log4j12.present"/>
-    </jar>
     <jar jarfile="${build.home}/commons-${component.name}-tests.jar"
          basedir="${build.home}/tests"
         manifest="${build.home}/conf/MANIFEST.MF">
@@ -607,13 +599,6 @@
       <exclude name="org/apache/commons/logging/jdk14/TestHandler.class"
                  if="jdk.1.4.present"/>
     </jar>
-    <jar jarfile="${build.home}/commons-${component.name}-wrapper.jar"
-         basedir="${build.home}/tests"
-        manifest="${build.home}/conf/MANIFEST.MF">
-      <include name="org/apache/commons/logging/Wrapper.class"/>
-      <include name="org/apache/commons/logging/jdk14/TestHandler.class"
-                 if="jdk.1.4.present"/>
-    </jar>
 
   </target>