You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by mc...@apache.org on 2004/06/08 18:41:18 UTC

svn commit: rev 20912 - in avalon/trunk/runtime/logging: . api impl log4j logkit/api logkit/impl logkit/plugins/datagram logkit/plugins/socket logkit/plugins/syslog spi test

Author: mcconnell
Date: Tue Jun  8 09:41:17 2004
New Revision: 20912

Added:
   avalon/trunk/runtime/logging/api/build.properties   (contents, props changed)
   avalon/trunk/runtime/logging/build.properties   (contents, props changed)
   avalon/trunk/runtime/logging/build.xml   (contents, props changed)
   avalon/trunk/runtime/logging/impl/build.properties   (contents, props changed)
   avalon/trunk/runtime/logging/log4j/build.properties   (contents, props changed)
   avalon/trunk/runtime/logging/logkit/api/build.properties   (contents, props changed)
   avalon/trunk/runtime/logging/logkit/impl/build.properties   (contents, props changed)
   avalon/trunk/runtime/logging/logkit/plugins/datagram/build.properties   (contents, props changed)
   avalon/trunk/runtime/logging/logkit/plugins/socket/build.properties   (contents, props changed)
   avalon/trunk/runtime/logging/logkit/plugins/syslog/build.properties   (contents, props changed)
   avalon/trunk/runtime/logging/spi/build.properties   (contents, props changed)
   avalon/trunk/runtime/logging/test/build.properties   (contents, props changed)
Log:
add a bunch of build.properties files

Added: avalon/trunk/runtime/logging/api/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/api/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,3 @@
+project.name = avalon-logging-api
+project.src.main = java
+project.home = ../../../central/system

Added: avalon/trunk/runtime/logging/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1 @@
+project.home = ../../central/system

Added: avalon/trunk/runtime/logging/build.xml
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/build.xml	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="avalon-logging" default="dist" basedir="." xmlns:x="antlib:org.apache.avalon.tools">
+
+  <property file="build.properties"/>
+
+  <path id="targets">
+    <fileset dir="." includes="**/build.xml" excludes="build.xml"/>
+  </path>
+
+  <target name="dist" depends="">
+    <x:home/>
+    <x:reactor>
+      <path refid="targets"/>
+    </x:reactor>
+  </target>
+
+  <target name="clean" depends="">
+    <subant inheritAll="false" 
+       genericantfile="${project.home}/build/standard.xml" target="clean"
+       buildpathref="targets"/>
+  </target>
+
+</project>

Added: avalon/trunk/runtime/logging/impl/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/impl/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,3 @@
+project.name = avalon-logging-impl
+project.src.main = java
+project.home = ../../../central/system

Added: avalon/trunk/runtime/logging/log4j/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/log4j/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,7 @@
+
+project.name = avalon-logging-log4j
+project.src.main = java
+project.home = ../../../central/system
+
+avalon.artifact.factory = org.apache.avalon.logging.log4j.Log4JLoggingFactory
+avalon.artifact.export = org.apache.avalon.logging.provider.LoggingManager

Added: avalon/trunk/runtime/logging/logkit/api/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/logkit/api/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,5 @@
+
+project.name = avalon-logging-logkit-api
+project.src.main = java
+project.home = ../../../../central/system
+

Added: avalon/trunk/runtime/logging/logkit/impl/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/logkit/impl/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,7 @@
+
+project.name = avalon-logging-logkit-impl
+project.src.main = java
+project.home = ../../../../central/system
+
+avalon.artifact.factory = org.apache.avalon.logging.logkit.DefaultLoggingFactory
+avalon.artifact.export = org.apache.avalon.logging.provider.LoggingManager

Added: avalon/trunk/runtime/logging/logkit/plugins/datagram/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/logkit/plugins/datagram/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,6 @@
+
+project.name = avalon-logging-logkit-datagram
+project.src.main = java
+project.home = ../../../../../central/system
+
+avalon.artifact.factory = org.apache.avalon.logging.logkit.factory.datagram.DatagramTargetFactory

Added: avalon/trunk/runtime/logging/logkit/plugins/socket/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/logkit/plugins/socket/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,6 @@
+
+project.name = avalon-logging-logkit-socket
+project.src.main = java
+project.home = ../../../../../central/system
+
+avalon.artifact.factory = org.apache.avalon.logging.logkit.factory.socket.SocketTargetFactory

Added: avalon/trunk/runtime/logging/logkit/plugins/syslog/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/logkit/plugins/syslog/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,6 @@
+
+project.name = avalon-logging-logkit-syslog
+project.src.main = java
+project.home = ../../../../../central/system
+
+avalon.artifact.factory = org.apache.avalon.logging.logkit.factory.syslog.SyslogTargetFactory

Added: avalon/trunk/runtime/logging/spi/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/spi/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,3 @@
+project.name = avalon-logging-spi
+project.src.main = java
+project.home = ../../../central/system

Added: avalon/trunk/runtime/logging/test/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/logging/test/build.properties	Tue Jun  8 09:41:17 2004
@@ -0,0 +1,3 @@
+project.name = avalon-logging-test
+project.src.main = java
+project.home = ../../../central/system

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org