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/07 17:13:58 UTC

svn commit: rev 20871 - in avalon/trunk/runtime/framework: . api impl

Author: mcconnell
Date: Mon Jun  7 08:13:57 2004
New Revision: 20871

Added:
   avalon/trunk/runtime/framework/api/build.properties
   avalon/trunk/runtime/framework/api/build.xml
   avalon/trunk/runtime/framework/build.properties
   avalon/trunk/runtime/framework/build.xml
   avalon/trunk/runtime/framework/impl/build.properties
   avalon/trunk/runtime/framework/impl/build.xml
Log:
add ant based build solution to framework

Added: avalon/trunk/runtime/framework/api/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/framework/api/build.properties	Mon Jun  7 08:13:57 2004
@@ -0,0 +1,3 @@
+project.name = avalon-framework-api
+project.src.main = java
+project.home = ../../../central/system

Added: avalon/trunk/runtime/framework/api/build.xml
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/framework/api/build.xml	Mon Jun  7 08:13:57 2004
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="avalon-framework-api" default="dist" basedir=".">
+  <property file="build.properties"/>
+  <import file="${project.home}/build/standard.xml"/>
+</project>

Added: avalon/trunk/runtime/framework/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/framework/build.properties	Mon Jun  7 08:13:57 2004
@@ -0,0 +1 @@
+project.home = ../../central/system

Added: avalon/trunk/runtime/framework/build.xml
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/framework/build.xml	Mon Jun  7 08:13:57 2004
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="test" default="build" 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="build" 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/framework/impl/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/framework/impl/build.properties	Mon Jun  7 08:13:57 2004
@@ -0,0 +1,3 @@
+project.name = avalon-framework-impl
+project.src.main = java
+project.home = ../../../central/system

Added: avalon/trunk/runtime/framework/impl/build.xml
==============================================================================
--- (empty file)
+++ avalon/trunk/runtime/framework/impl/build.xml	Mon Jun  7 08:13:57 2004
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="avalon-framework-impl" default="dist" basedir=".">
+  <property file="build.properties"/>
+  <import file="${project.home}/build/standard.xml"/>
+</project>

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