1
0

Avoid breaking the build when a developer has "commons-logging.jar" set

in a build.properties file already.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138956 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Craig R. McClanahan
2003-03-17 03:24:14 +00:00
parent 0f011cbf65
commit cf2cfe7196

View File

@@ -3,7 +3,7 @@
<!-- <!--
"Logging" component of the Jakarta Commons Subproject "Logging" component of the Jakarta Commons Subproject
$Id: build.xml,v 1.24 2003/03/13 21:19:33 costin Exp $ $Id: build.xml,v 1.25 2003/03/17 03:24:14 craigmcc Exp $
--> -->
@@ -179,16 +179,13 @@
<fileset dir="${source.home}" excludes="**/*.java"/> <fileset dir="${source.home}" excludes="**/*.java"/>
</copy> </copy>
<property name="commons-logging-api.jar" value="${build.home}/commons-${component.name}-api.jar" /> <jar jarfile="${build.home}/commons-${component.name}.jar"
<property name="commons-logging.jar" value="${build.home}/commons-${component.name}.jar" />
<jar jarfile="${commons-logging.jar}"
basedir="${build.home}/classes" basedir="${build.home}/classes"
manifest="${conf.home}/MANIFEST.MF"> manifest="${conf.home}/MANIFEST.MF">
<include name="org/apache/commons/logging/**" /> <include name="org/apache/commons/logging/**" />
</jar> </jar>
<jar jarfile="${commons-logging-api.jar}" <jar jarfile="${build.home}/commons-${component.name}-api.jar"
basedir="${build.home}/classes" basedir="${build.home}/classes"
manifest="${conf.home}/MANIFEST.MF"> manifest="${conf.home}/MANIFEST.MF">
<include name="org/apache/commons/logging/*.class" /> <include name="org/apache/commons/logging/*.class" />