Author: kevj
Date: Sun May 20 02:27:33 2007
New Revision: 539850

URL: http://svn.apache.org/viewvc?view=rev&rev=539850
Log:
-indentation

Modified:
    ant/core/trunk/src/etc/testcases/taskdefs/apt.xml

Modified: ant/core/trunk/src/etc/testcases/taskdefs/apt.xml
URL: 
http://svn.apache.org/viewvc/ant/core/trunk/src/etc/testcases/taskdefs/apt.xml?view=diff&rev=539850&r1=539849&r2=539850
==============================================================================
--- ant/core/trunk/src/etc/testcases/taskdefs/apt.xml (original)
+++ ant/core/trunk/src/etc/testcases/taskdefs/apt.xml Sun May 20 02:27:33 2007
@@ -1,121 +1,115 @@
 <?xml version="1.0"?>
 <project basedir=".">
+  <!-- apt tests -->
 
-<!-- apt tests -->
-
-<property name="build.dir" location="aptbuild" />
-<property name="classes.dir" location="${build.dir}/classes" />
-<property name="classes2.dir" location="${build.dir}/classes2" />
-<property name="preprocess.dir" location="${build.dir}/source" />
-<property name="src" location="apt" />
-
-<property name="AptExample.class" location="${classes.dir}/AptExample.class" />
-
-<macrodef name="assertCompiled">
-  <attribute name="file" />
-  <sequential >
-    <fail  message="not found: @{file}">
-      <condition>
-        <not>
-          <available file="@{file}" />
-        </not>
-      </condition>
-    </fail>
-  </sequential>
-</macrodef>
-
-<presetdef name="assertAptExampleCompiled">
-  <assertCompiled file="${AptExample.class}"/>
-</presetdef>
-
-<target name="clean">
-  <delete dir="${build.dir}"/>
-</target>
-
-<target name="init">
-  <mkdir dir="${classes.dir}"/>
-  <mkdir dir="${classes2.dir}"/>
-  <mkdir dir="${preprocess.dir}"/>
-</target>
-
-<target name="testApt" depends="init">
-  <apt srcdir="${src}"
-       destdir="${classes.dir}"
-       debug="on"
-       compile="true"
-       preprocessdir="${preprocess.dir}">
-  </apt>
-  <assertAptExampleCompiled />
-</target>
-
-<target name="testAptFork" depends="init">
-  <apt srcdir="${src}"
-       destdir="${classes.dir}"
-       debug="on"
-       compile="true"
-       fork="true"
-       preprocessdir="${preprocess.dir}">
-  </apt>
-  <assertAptExampleCompiled />
-</target>
-
-
-<target name="testAptForkFalse" depends="init">
-  <apt srcdir="${src}"
-       destdir="${classes.dir}"
-       debug="on"
-       compile="true"
-       fork="false"
-       preprocessdir="${preprocess.dir}">
-  </apt>
-  <assertAptExampleCompiled />
-</target>
-
-<target name="testListAnnotationTypes" depends="init">
-  <apt srcdir="${src}"
-       destdir="${classes.dir}"
-       debug="on"
-       compile="true"
-       preprocessdir="${preprocess.dir}">
-       <compilerarg value="-XListAnnotationTypes" />
-       <compilerarg value="-Xlint:deprecation" /> 
-  </apt>
+  <property name="build.dir" location="aptbuild" />
+  <property name="classes.dir" location="${build.dir}/classes" />
+  <property name="classes2.dir" location="${build.dir}/classes2" />
+  <property name="preprocess.dir" location="${build.dir}/source" />
+  <property name="src" location="apt" />
+
+  <property name="AptExample.class" location="${classes.dir}/AptExample.class" 
/>
+
+  <macrodef name="assertCompiled">
+    <attribute name="file" />
+    <sequential >
+      <fail  message="not found: @{file}">
+        <condition>
+          <not>
+            <available file="@{file}" />
+          </not>
+        </condition>
+      </fail>
+    </sequential>
+  </macrodef>
+
+  <presetdef name="assertAptExampleCompiled">
+    <assertCompiled file="${AptExample.class}"/>
+  </presetdef>
+
+  <target name="clean">
+    <delete dir="${build.dir}"/>
+  </target>
+
+  <target name="init">
+    <mkdir dir="${classes.dir}"/>
+    <mkdir dir="${classes2.dir}"/>
+    <mkdir dir="${preprocess.dir}"/>
+  </target>
+
+  <target name="testApt" depends="init">
+    <apt srcdir="${src}"
+         destdir="${classes.dir}"
+         debug="on"
+         compile="true"
+         preprocessdir="${preprocess.dir}">
+    </apt>
+    <assertAptExampleCompiled />
+  </target>
+
+  <target name="testAptFork" depends="init">
+    <apt srcdir="${src}"
+         destdir="${classes.dir}"
+         debug="on"
+         compile="true"
+         fork="true"
+         preprocessdir="${preprocess.dir}">
+    </apt>
+    <assertAptExampleCompiled />
+  </target>
+
+  <target name="testAptForkFalse" depends="init">
+    <apt srcdir="${src}"
+         destdir="${classes.dir}"
+         debug="on"
+         compile="true"
+         fork="false"
+         preprocessdir="${preprocess.dir}">
+    </apt>
+    <assertAptExampleCompiled />
+  </target>
+
+  <target name="testListAnnotationTypes" depends="init">
+    <apt srcdir="${src}"
+         destdir="${classes.dir}"
+         debug="on"
+         compile="true"
+         preprocessdir="${preprocess.dir}">
+         <compilerarg value="-XListAnnotationTypes" />
+         <compilerarg value="-Xlint:deprecation" /> 
+    </apt>
   
-  <assertAptExampleCompiled />
-</target>
-
-
-<!-- use the factory we compiled. To avoid trouble
-  we deliver into a version in a new classpath, otherwise
-  the dependency logic will not run Apt-->
-<target name="testAptNewFactory" depends="testApt">
-  <apt srcdir="${src}"
-       destdir="${classes2.dir}"
-       debug="on"
-       compile="true"
-       factory="DistributedAnnotationFactory"
-       preprocessdir="${preprocess.dir}">
-       <factorypath path="${classes.dir}" />
-       <option name="build.dir" value="${build.dir}" />
-  </apt>
-  <assertAptExampleCompiled />
-</target>
-
-<target name="testAptNewFactoryFork" depends="testApt">
-  <apt srcdir="${src}"
-       destdir="${classes2.dir}"
-       debug="on"
-       compile="true"
-       fork="true"
-       factory="DistributedAnnotationFactory"
-       preprocessdir="${preprocess.dir}">
-       <factorypath path="${classes.dir}" />
-       <option name="build.dir" value="${build.dir}" />
-  </apt>
-  <assertAptExampleCompiled />
-</target>
-
-
+    <assertAptExampleCompiled />
+  </target>
 
 
-</project>
+  <!-- use the factory we compiled. To avoid trouble
+    we deliver into a version in a new classpath, otherwise
+    the dependency logic will not run Apt-->
+  <target name="testAptNewFactory" depends="testApt">
+    <apt srcdir="${src}"
+         destdir="${classes2.dir}"
+         debug="on"
+         compile="true"
+         factory="DistributedAnnotationFactory"
+         preprocessdir="${preprocess.dir}">
+         <factorypath path="${classes.dir}" />
+         <option name="build.dir" value="${build.dir}" />
+    </apt>
+    <assertAptExampleCompiled />
+  </target>
+
+  <target name="testAptNewFactoryFork" depends="testApt">
+    <apt srcdir="${src}"
+         destdir="${classes2.dir}"
+         debug="on"
+         compile="true"
+         fork="true"
+         factory="DistributedAnnotationFactory"
+         preprocessdir="${preprocess.dir}">
+         <factorypath path="${classes.dir}" />
+         <option name="build.dir" value="${build.dir}" />
+    </apt>
+    <assertAptExampleCompiled />
+  </target>
+</project>
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to