You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ia...@apache.org on 2004/09/02 18:01:48 UTC

svn commit: rev 37390 - in webservices/axis/trunk: . docs java java/dev java/dev/scratch java/dev/scratch/ias java/dev/scratch/ias/jax-rpc2

Author: ias
Date: Thu Sep  2 09:01:47 2004
New Revision: 37390

Added:
   webservices/axis/trunk/
   webservices/axis/trunk/docs/
   webservices/axis/trunk/java/
   webservices/axis/trunk/java/dev/
   webservices/axis/trunk/java/dev/scratch/
   webservices/axis/trunk/java/dev/scratch/ias/
   webservices/axis/trunk/java/dev/scratch/ias/jax-rpc2/
   webservices/axis/trunk/java/dev/scratch/ias/jax-rpc2/build.xml   (contents, props changed)
Log:
(The first and) initial drops for Axis 2!
Thanks, dims and everyone supporting Axis!

Added: webservices/axis/trunk/java/dev/scratch/ias/jax-rpc2/build.xml
==============================================================================
--- (empty file)
+++ webservices/axis/trunk/java/dev/scratch/ias/jax-rpc2/build.xml	Thu Sep  2 09:01:47 2004
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+
+<project name="jax-rpc-2.0-prototype" basedir="." default="compile">
+
+    <target name="init">
+        <property name="src.dir" location="${basedir}/src"/>
+        <property name="build.dir" location="${basedir}/build"/>
+        <property name="lib.dir" location="${basedir}/lib"/>
+        <path id="classpath">
+             <pathelement location="${build.dir}"/>
+             <pathelement location="${lib.dir}/saaj-api.jar"/>
+             <pathelement location="${lib.dir}/jaxb-api.jar"/>
+        </path>
+        <mkdir dir="${build.dir}"/>
+    </target>
+
+    <target name="clean" depends="init">
+        <delete>
+            <fileset dir="${build.dir}" includes="**/*"/>
+        </delete>
+    </target>
+
+    <target name="compile" depends="init">
+        <javac srcdir="${src.dir}" destdir="${build.dir}" debug="on" source="1.5">
+            <classpath refid="classpath"/>
+            <compilerarg value="-Xlint:unchecked"/>
+        </javac>
+    </target>
+</project>