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">
<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="#Dependencies">[Dependencies]</a>
<a href="#Release Info">[Release Info]</a>
@@ -55,13 +55,17 @@ Non-goals:
components for compilation:</p>
<ul>
<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>
<li><a href="http://jakarta.apache.org/jakarta-log4j/">Jakarta Log4j</a></li>
<li><a href="http://jakarta.apache.org/jakarta-avalon/">Jakarta Avalon LogKit</a></li>
(Version 1.2 or later)</li>
<li><a href="http://jakarta.apache.org/jakarta-log4j/">Jakarta Log4j</a>
(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>
<p> Of course, the user must ensure that any logging systems that they wish to use
are present in the classpath when they use this component. </p>
<p> Of course, the user must ensure that any logging systems that they wish
to use are present in the classpath when they use this component. </p>
<a name="Release Info"></a>
<h3>3. RELEASE INFO</h3>

View File

@@ -3,7 +3,7 @@
<!--
"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 -->
<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 -->
<property name="component.title" value="Logging Library"/>
@@ -106,6 +109,7 @@
description="Initialize and evaluate conditionals">
<echo message="-------- ${component.title} ${component.version} --------"/>
<filter token="name" value="${component.name}"/>
<filter token="package" value="${component.package}"/>
<filter token="version" value="${component.version}"/>
</target>
@@ -124,10 +128,10 @@
<target name="static" depends="prepare"
description="Copy static files to build directory">
<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="*.properties"/>
</copy> -->
</copy>
</target>
@@ -206,7 +210,8 @@
<copy file="../LICENSE"
tofile="${build.home}/classes/META-INF/LICENSE.txt"/>
<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"/>
<copy todir="${dist.home}/src" filtering="on">
<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@