Author: mriou
Date: Wed Aug 30 15:41:24 2006
New Revision: 438692
URL: http://svn.apache.org/viewvc?rev=438692&view=rev
Log:
ODE-15 Forgot to add build.xml for examples.
Added:
incubator/ode/trunk/axis2-examples/build.xml
Added: incubator/ode/trunk/axis2-examples/build.xml
URL:
http://svn.apache.org/viewvc/incubator/ode/trunk/axis2-examples/build.xml?rev=438692&view=auto
==============================================================================
--- incubator/ode/trunk/axis2-examples/build.xml (added)
+++ incubator/ode/trunk/axis2-examples/build.xml Wed Aug 30 15:41:24 2006
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<project name="axis2-examples" default="tarball">
+
+ <property name="src" value="src/examples" />
+
+ <target name="tarball">
+ <mkdir dir="target" />
+ <tar destfile="target/tarball.tar" longfile="gnu" >
+ <tarfileset dir="${src}" prefix="examples/" username="ode" group="ode"
/>
+ </tar>
+ </target>
+
+</project>