craigmcc 2002/10/27 16:41:29
Modified: logging build.xml
Log:
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.
Revision Changes Path
1.22 +5 -5 jakarta-commons/logging/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons/logging/build.xml,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- build.xml 24 Oct 2002 18:26:21 -0000 1.21
+++ build.xml 28 Oct 2002 00:41:29 -0000 1.22
@@ -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" />
--
To unsubscribe, e-mail: <mailto:commons-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:commons-dev-help@;jakarta.apache.org>