1
0

When copying MANIFEST.MF files for the JAR files, use the one that has

already been filtered to get the right version number in it.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138962 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Craig R. McClanahan
2003-03-31 00:20:19 +00:00
parent 27559f2f8c
commit b3039e1bbf

View File

@@ -3,7 +3,7 @@
<!--
"Logging" component of the Jakarta Commons Subproject
$Id: build.xml,v 1.29 2003/03/30 23:42:35 craigmcc Exp $
$Id: build.xml,v 1.30 2003/03/31 00:20:19 craigmcc Exp $
-->
@@ -203,13 +203,13 @@
<jar jarfile="${build.home}/commons-${component.name}.jar"
basedir="${build.home}/classes"
manifest="${conf.home}/MANIFEST.MF">
manifest="${build.home}/conf/MANIFEST.MF">
<include name="org/apache/commons/logging/**" />
</jar>
<jar jarfile="${build.home}/commons-${component.name}-api.jar"
basedir="${build.home}/classes"
manifest="${conf.home}/MANIFEST.MF">
manifest="${build.home}/conf/MANIFEST.MF">
<include name="org/apache/commons/logging/*.class" />
<include name="org/apache/commons/logging/impl/LogFactoryImpl*.class" />
<include name="org/apache/commons/logging/impl/Jdk14*.class" />
@@ -233,14 +233,14 @@
</copy>
<jar jarfile="${build.home}/commons-${component.name}-tests.jar"
basedir="${build.home}/tests"
manifest="${conf.home}/MANIFEST.MF">
manifest="${build.home}/conf/MANIFEST.MF">
<exclude name="org/apache/commons/logging/Wrapper.class"/>
<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="${conf.home}/MANIFEST.MF">
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"/>