1
0

Add the simple logger to the '-api' jar.

It seems all is working fine now, including the log4j JMX stuff in the
default config ( adding the 'setName()' sovled the problems )


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138889 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Costin Manolache
2002-06-07 20:22:29 +00:00
parent b2038dcc68
commit 83e704b910

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.15 2002/06/06 22:11:28 costin Exp $ $Id: build.xml,v 1.16 2002/06/07 20:22:29 costin Exp $
--> -->
@@ -179,6 +179,8 @@
<include name="org/apache/commons/logging/*.class" /> <include name="org/apache/commons/logging/*.class" />
<include name="org/apache/commons/logging/impl/LogFactoryImpl*.class" /> <include name="org/apache/commons/logging/impl/LogFactoryImpl*.class" />
<include name="org/apache/commons/logging/impl/Jdk14*.class" /> <include name="org/apache/commons/logging/impl/Jdk14*.class" />
<include name="org/apache/commons/logging/impl/SimpleLog*.class" />
<include name="org/apache/commons/logging/impl/NoOpLog*.class" />
</jar> </jar>
</target> </target>
@@ -237,16 +239,10 @@
<mkdir dir="${build.home}/classes/META-INF"/> <mkdir dir="${build.home}/classes/META-INF"/>
<copy file="../LICENSE" <copy file="../LICENSE"
tofile="${build.home}/classes/META-INF/LICENSE.txt"/> tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
<jar jarfile="${dist.home}/commons-${component.name}.jar" <copy file="${build.home}/commons-${component.name}.jar"
basedir="${build.home}/classes" tofile="${dist.home}/commons-${component.name}.jar" />
manifest="${build.home}/conf/MANIFEST.MF"/> <copy file="${build.home}/commons-${component.name}-api.jar"
<jar jarfile="${build.home}/commons-${component.name}-api.jar" tofile="${dist.home}/commons-${component.name}-api.jar" />
basedir="${build.home}/classes"
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" />
</jar>
<mkdir dir="${dist.home}/src"/> <mkdir dir="${dist.home}/src"/>
<copy todir="${dist.home}/src" filtering="on"> <copy todir="${dist.home}/src" filtering="on">
<fileset dir="${source.home}"/> <fileset dir="${source.home}"/>