1
0

o maven goodies

PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138900 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl
2002-07-23 16:55:55 +00:00
parent 51532168ec
commit a42095eb11
3 changed files with 44 additions and 1 deletions

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.16 2002/06/07 20:22:29 costin Exp $ $Id: build.xml,v 1.17 2002/07/23 16:55:55 jvanzyl Exp $
--> -->
@@ -117,6 +117,12 @@
<target name="prepare" depends="init" <target name="prepare" depends="init"
description="Prepare build directory"> description="Prepare build directory">
<echo>
${log4j.jar}
${logkit.jar}
</echo>
<mkdir dir="${build.home}"/> <mkdir dir="${build.home}"/>
<mkdir dir="${build.home}/classes"/> <mkdir dir="${build.home}/classes"/>
<mkdir dir="${build.home}/conf"/> <mkdir dir="${build.home}/conf"/>

4
maven.xml Normal file
View File

@@ -0,0 +1,4 @@
<project default="java:jar"
xmlns:j="jelly:core">
</project>

33
project.xml Normal file
View File

@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<project>
<extend>../project.xml</extend>
<name>commons-loggin</name>
<id>commons-logging</id>
<currentVersion>1.0-dev</currentVersion>
<inceptionYear>2002</inceptionYear>
<gumpRepositoryId>jakarta</gumpRepositoryId>
<shortDescription>Commons Logging</shortDescription>
<description>
Commons Logging
</description>
<developers>
</developers>
<dependencies>
<dependency>
<id>log4j</id>
<version>1.1.3</version>
</dependency>
<dependency>
<id>logkit</id>
<version>1.0.1</version>
</dependency>
</dependencies>
</project>