alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Ant example source code file (apt.xml)

This example Ant source code file (apt.xml) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Ant tags/keywords

apt, apt, distributedannotationfactory, distributedannotationfactory, to, to, xlint:deprecation, xlistannotationtypes, xlistannotationtypes

The apt.xml source code

<?xml version="1.0"?>
<project basedir=".">

<!-- 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>
  
  <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>




</project>

Other Ant examples (source code examples)

Here is a short list of links related to this Ant apt.xml source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.