1
0

A few more tweaks to the STATUS file, add the MANIFEST.MF file for the

META-INF directory of the JAR file.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138832 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Craig R. McClanahan
2002-01-08 22:55:39 +00:00
parent ea082c4cdc
commit 7ed3bbc6ee
3 changed files with 24 additions and 10 deletions

View File

@@ -7,7 +7,7 @@
<div align="center"> <div align="center">
<h1>The Jakarta Commons <em>Logging</em> Component</h1> <h1>The Jakarta Commons <em>Logging</em> Component</h1>
$Id: STATUS.html,v 1.2 2002/01/08 21:35:10 rdonkin Exp $<br> $Id: STATUS.html,v 1.3 2002/01/08 22:55:38 craigmcc Exp $<br>
<a href="#Introduction">[Introduction]</a> <a href="#Introduction">[Introduction]</a>
<a href="#Dependencies">[Dependencies]</a> <a href="#Dependencies">[Dependencies]</a>
<a href="#Release Info">[Release Info]</a> <a href="#Release Info">[Release Info]</a>
@@ -55,13 +55,17 @@ Non-goals:
components for compilation:</p> components for compilation:</p>
<ul> <ul>
<li><a href="http://java.sun.com/j2se">Java Development Kit</a> <li><a href="http://java.sun.com/j2se">Java Development Kit</a>
(Version 1.2 or later) <strong>TO DO - Can This Run Under Java 1?</strong></li> (Version 1.2 or later)</li>
<li><a href="http://jakarta.apache.org/jakarta-log4j/">Jakarta Log4j</a></li> <li><a href="http://jakarta.apache.org/jakarta-log4j/">Jakarta Log4j</a>
<li><a href="http://jakarta.apache.org/jakarta-avalon/">Jakarta Avalon LogKit</a></li> (optional)</li>
<li><a href="http://jakarta.apache.org/jakarta-avalon/">Jakarta Avalon
(optional) LogKit</a></li>
<li><a href="http://java.sun.com/j2se">Java Development Kit</a> (Version 1.4
or later) logging APIs (optional)</li>
</ul> </ul>
<p> Of course, the user must ensure that any logging systems that they wish to use <p> Of course, the user must ensure that any logging systems that they wish
are present in the classpath when they use this component. </p> to use are present in the classpath when they use this component. </p>
<a name="Release Info"></a> <a name="Release Info"></a>
<h3>3. RELEASE INFO</h3> <h3>3. RELEASE INFO</h3>

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.6 2002/01/07 23:06:10 rdonkin Exp $ $Id: build.xml,v 1.7 2002/01/08 22:55:38 craigmcc Exp $
--> -->
@@ -38,6 +38,9 @@
<!-- The name of this component --> <!-- The name of this component -->
<property name="component.name" value="logging"/> <property name="component.name" value="logging"/>
<!-- The primary package name of this component -->
<property name="component.package" value="org.apache.commons.logging"/>
<!-- The title of this component --> <!-- The title of this component -->
<property name="component.title" value="Logging Library"/> <property name="component.title" value="Logging Library"/>
@@ -106,6 +109,7 @@
description="Initialize and evaluate conditionals"> description="Initialize and evaluate conditionals">
<echo message="-------- ${component.title} ${component.version} --------"/> <echo message="-------- ${component.title} ${component.version} --------"/>
<filter token="name" value="${component.name}"/> <filter token="name" value="${component.name}"/>
<filter token="package" value="${component.package}"/>
<filter token="version" value="${component.version}"/> <filter token="version" value="${component.version}"/>
</target> </target>
@@ -124,10 +128,10 @@
<target name="static" depends="prepare" <target name="static" depends="prepare"
description="Copy static files to build directory"> description="Copy static files to build directory">
<tstamp/> <tstamp/>
<!-- <copy todir="${build.home}/conf" filtering="on"> <copy todir="${build.home}/conf" filtering="on">
<fileset dir="${conf.home}" includes="*.MF"/> <fileset dir="${conf.home}" includes="*.MF"/>
<fileset dir="${conf.home}" includes="*.properties"/> <fileset dir="${conf.home}" includes="*.properties"/>
</copy> --> </copy>
</target> </target>
@@ -206,7 +210,8 @@
<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" <jar jarfile="${dist.home}/commons-${component.name}.jar"
basedir="${build.home}/classes"/> basedir="${build.home}/classes"
manifest="${build.home}/conf/MANIFEST.MF"/>
<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}"/>

5
src/conf/MANIFEST.MF Normal file
View File

@@ -0,0 +1,5 @@
Extension-Name: @package@
Specification-Vendor: Apache Software Foundation
Specification-Version: 1.0
Implementation-Vendor: Apache Software Foundation
Implementation-Version: @version@