1
0

Avoid name clashes on local property names "commons-logging-api.jar" and

"commons-logging.jar" which will not work correctly for any developer who
has such properties defined in a "${user.home}/build.properties" file.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138930 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Craig R. McClanahan
2002-10-28 00:41:29 +00:00
parent 8daf0f8bce
commit 4453cfb4fa

View File

@@ -3,7 +3,7 @@
<!--
"Logging" component of the Jakarta Commons Subproject
$Id: build.xml,v 1.21 2002/10/24 18:26:21 costin Exp $
$Id: build.xml,v 1.22 2002/10/28 00:41:29 craigmcc Exp $
-->
@@ -179,16 +179,16 @@
<fileset dir="${source.home}" excludes="**/*.java"/>
</copy>
<property name="commons-logging-api.jar" value="${build.home}/commons-${component.name}-api.jar" />
<property name="commons-logging.jar" value="${build.home}/commons-${component.name}.jar" />
<property name="commons-logging-api-jar" value="${build.home}/commons-${component.name}-api.jar" />
<property name="commons-logging-jar" value="${build.home}/commons-${component.name}.jar" />
<jar jarfile="${commons-logging.jar}"
<jar jarfile="${commons-logging-jar}"
basedir="${build.home}/classes"
manifest="${conf.home}/MANIFEST.MF">
<include name="org/apache/commons/logging/**" />
</jar>
<jar jarfile="${commons-logging-api.jar}"
<jar jarfile="${commons-logging-api-jar}"
basedir="${build.home}/classes"
manifest="${conf.home}/MANIFEST.MF">
<include name="org/apache/commons/logging/*.class" />