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/17 10:14:14 UTC

svn commit: rev 21381 - avalon/trunk/planet/tutorials/hello

Author: mcconnell
Date: Thu Jun 17 01:14:13 2004
New Revision: 21381

Added:
   avalon/trunk/planet/tutorials/hello/build.properties   (contents, props changed)
   avalon/trunk/planet/tutorials/hello/build.xml
Log:
woops

Added: avalon/trunk/planet/tutorials/hello/build.properties
==============================================================================
--- (empty file)
+++ avalon/trunk/planet/tutorials/hello/build.properties	Thu Jun 17 01:14:13 2004
@@ -0,0 +1,3 @@
+project.name = avalon-tutorial-hello
+project.src.main = java
+project.home = ../../../central/system

Added: avalon/trunk/planet/tutorials/hello/build.xml
==============================================================================
--- (empty file)
+++ avalon/trunk/planet/tutorials/hello/build.xml	Thu Jun 17 01:14:13 2004
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+
+<project name="avalon-tutorial-hello" default="dist" basedir="." 
+    xmlns:x="antlib:org.apache.avalon.tools"
+    xmlns:m="plugin:avalon/meta/avalon-meta-tools" >
+
+  <property file="build.properties"/>
+  <import file="${project.home}/build/standard.xml"/>
+
+  <target name="build" depends="standard.build">
+    <m:meta destDir="${basedir}/target/classes">
+      <fileset dir="${basedir}/target/build/main">
+        <include name="**/*.java"/>
+      </fileset>
+    </m:meta>
+  </target>
+
+</project>
+

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