`
nanjingjiangbiao_T
  • 浏览: 2572533 次
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

Ant命令行与Build.xml实例

 
阅读更多

一 Ant命令行

ant [options] [target [target2 [target3] ...]]

Options:

-help print this message

-projecthelp print project help information

-version print the version information and exit

-quiet be extra quiet

-verbose be extra verbose

-debug print debugging information

-emacs produce logging information without adornments

-logfile file use given file for log output

-logger classname the class that is to perform logging

-listener classname add an instance of class as a project listener

-buildfile file use specified buildfile

-find file search for buildfile towards the root of the filesystem and use the first one found

-Dproperty=value set property to value

常用的如下:

-version 要求Ant 显示其版本信息,然后退出。 -quiet 抑制并非由构建文件中的echo 任务所产生的大多数消息。

-verbose 显示构建过程中每个操作的详细消息。此选项与-debug 选项只能选其一。

-debug 显示Ant 和任务开发人员已经标志为调试消息的消息。此选项与-verbose 只能选其一。

-logfile filename 将日志输出重定向到指定文件。

-logger classname 指定一个类来处理Ant 的日志记录。所指定的类必须实现了org.apache. tools.ant.BuildLogger 接口。

-buildfile filename 指定Ant 需要处理的构建文件。默认的构建文件为build.xml。

-Dproperty=value 在命令行上定义一个特性名-值对。

-find filename 指定Ant 应当处理的构建文件。与-buildfile 选项不同,如果所指定文件在当前目录中未找到,-find 就要求Ant 在其父目录中再进行搜索。这种搜索会继续在其祖先目录中进行,直至达到文件系统的根为止,在此如果文件还未找到,则构建失败。

例如:

ant -buildfile test.xml -Dbuild=build/classes dist

使用当前目录下的test.xml运行Ant,执行一个叫做dist的target,并设定build属性的值为build/classes。


二 build.xml

如下实例为ant源码中用来构建ant的build.xml的简化

<?xml version="1.0"?>

<project name="apache-ant" default="main" basedir=".">

<!-- Give user a chance to override without editing this file
(and without typing -D on each invocation) -->
<property file=".ant.properties"/>
<property file="${user.home}/.ant.properties"/>
<property environment="env"/>


<!--
===================================================================
Set the properties that control names and versions
===================================================================
-->
<property name="Name" value="Apache Ant"/>
<property name="name" value="ant"/>
<!-- this is the groupId of ant in the Maven repository -->
<property name="groupid" value="org/apache/ant"/>
<property name="project.version" value="1.8.2"/>
<!-- pom.version is used when doing a distribution and must match with what is checked in under src/etc/poms -->
<property name="pom.version" value="1.8.2-SNAPSHOT"/>
<property name="manifest-version" value="1.8.2"/>
<property name="bootstrap.jar" value="ant-bootstrap.jar"/>

<property name="ant.package" value="org/apache/tools/ant"/>
<property name="taskdefs.package" value="${ant.package}/taskdefs"/>
<property name="condition.package" value="${taskdefs.package}/condition"/>
<property name="optional.package" value="${taskdefs.package}/optional"/>
<property name="type.package" value="${ant.package}/types"/>
<property name="optional.type.package" value="${type.package}/optional"/>
<property name="apache.resolver.type.package" value="${ant.package}/types/resolver"/>
<property name="util.package" value="${ant.package}/util"/>
<property name="regexp.package" value="${util.package}/regexp"/>

<property name="optional.jars.prefix" value="ant"/>
<property name="optional.jars.whenmanifestonly" value="skip"/>

<!--
===================================================================
Set the properties related to the source tree
===================================================================
-->
<property name="src.dir" value="src"/>
<property name="java.dir" value="${src.dir}/main"/>
<property name="script.dir" value="${src.dir}/script"/>
<property name="lib.dir" value="lib"/>
<property name="docs.dir" value="docs"/>
<property name="etc.dir" value="${src.dir}/etc"/>
<property name="src.junit" value="${src.dir}/tests/junit"/>
<property name="src.antunit" value="${src.dir}/tests/antunit"/>
<property name="tests.etc.dir" value="${src.dir}/etc/testcases"/>
<property name="manifest" value="${src.dir}/etc/manifest"/>
<property name="resource.dir" value="${src.dir}/resources"/>

<!--
===================================================================
Set the properties for the build area
===================================================================
-->
<property name="build.dir" value="build"/>
<property name="bootstrap.dir" value="bootstrap"/>
<property name="build.classes" value="${build.dir}/classes"/>
<property name="build.lib" value="${build.dir}/lib"/>
<property name="build.javadocs" value="${build.dir}/javadocs"/>
<property name="build.tests" value="${build.dir}/testcases"/>
<property name="build.tests.javadocs" value="${build.dir}/javadocs.test/"/>
<property name="build.junit.xml" location="${build.tests}/xml"/>
<property name="antunit.xml" location="${build.dir}/antunit/xml"/>
<property name="antunit.reports" location="${build.dir}/antunit/reports"/>
<property name="antunit.loglevel" value="none"/>
<property name="build.junit.reports" location="${build.tests}/reports"/>
<property name="manifest.tmp" value="${build.dir}/optional.manifest"/>
<!-- the absolute path -->
<property name="build.tests.value" location="${build.tests}"/>

<!--
===================================================================
Set the properties that control various build options
===================================================================
-->
<property name="debug" value="true"/>
<property name="chmod.fail" value="true"/>
<property name="chmod.maxparallel" value="250"/>
<property name="deprecation" value="false"/>
<property name="optimize" value="true"/>
<property name="javac.target" value="1.4"/>
<property name="javac.source" value="1.4"/>
<property name="junit.filtertrace" value="off"/>
<property name="junit.summary" value="no"/>
<property name="test.haltonfailure" value="false"/>
<property name="junit.fork" value="true"/>
<property name="junit.forkmode" value="once"/>
<property name="expandproperty.files"
value="**/version.txt,**/defaultManifest.mf"/>
<property name="junit.collector.dir" value="${build.dir}/failingTests"/>
<property name="junit.collector.class" value="FailedTests"/>

<!--
===================================================================
Set the paths used in the build
===================================================================
-->
<path id="classpath">
<fileset dir="lib/optional" includes="*.jar"/>
</path>

<path id="tests-classpath">
<pathelement location="${build.classes}"/>
<path refid="classpath"/>
</path>
<path id="tests-runtime-classpath">
<path refid="tests-classpath"/>
<pathelement location="${build.tests}"/>
<!--
include the test source and test data dirs
so that we can pick resources via getResource(AsStream)
-->
<pathelement location="${src.junit}"/>
<pathelement location="${tests.etc.dir}"/>
<!-- Otherwise many tests fail with "com.sun.tools.javac.Main is not on the classpath.": -->
<pathelement location="${java.home}/../lib/tools.jar"/>
</path>

<!--
===================================================================
Set up properties for the distribution area
===================================================================
-->
<property name="dist.name" value="apache-${name}-${project.version}"/>
<property name="dist.base" value="distribution"/>
<property name="dist.base.source" value="${dist.base}/source"/>
<property name="dist.base.binaries" value="${dist.base}/binaries"/>
<property name="dist.base.manual" value="${dist.base}/manual"/>
<property name="dist.dir" value="dist"/>
<property name="dist.bin" value="${dist.dir}/bin"/>
<property name="dist.lib" value="${dist.dir}/lib"/>
<property name="dist.docs" value="${dist.dir}/docs"/>
<property name="dist.etc" value="${dist.dir}/etc"/>
<property name="dist.javadocs" value="${dist.dir}/docs/manual/api"/>

<property name="src.dist.dir" value="dist-src"/>
<property name="src.dist.src" value="${src.dist.dir}/src"/>
<property name="src.dist.docs" value="${src.dist.dir}/docs"/>
<property name="src.dist.lib" value="${src.dist.dir}/lib"/>

<property name="java-repository.dir" value="java-repository/${groupid}"/>

<!--
===================================================================
Set up selectors to be used by javac, junit and jar to exclude
files that have dependencies that are not available
===================================================================
-->
<!-- depends on JDK version -->
<selector id="needs.jdk1.5+">
<or>
<filename name="${taskdefs.package}/AptTest*"/>
<filename name="${util.package}/java15/"/>
<filename name="${ant.package}/loader/*5*"/>
</or>
</selector>

<!-- Kaffe has some JDK 1.5 features including java.lang.Readable,
but not all of them -->
<selector id="not.in.kaffe">
<or>
<filename name="${condition.package}/IsReachable*"/>
</or>
</selector>

<selector id="needs.apache-resolver">
<filename name="${apache.resolver.type.package}/"/>
</selector>

<selector id="needs.junit">
<and>
<filename name="${optional.package}/junit/"/>
<not>
<filename name="${optional.package}/junit/JUnit4TestMethodAdapter*"/>
</not>
</and>
</selector>

<selector id="needs.junit4">
<filename name="${optional.package}/junit/JUnit4TestMethodAdapter*"/>
</selector>

<selector id="needs.apache-regexp">
<filename name="${regexp.package}/JakartaRegexp*"/>
</selector>

<selector id="needs.apache-oro">
<or>
<filename name="${regexp.package}/JakartaOro*"/>
<filename name="${optional.package}/perforce/"/>
</or>
</selector>

<selector id="needs.apache-bcel">
<or>
<filename name="${ant.package}/filters/util/JavaClassHelper*"/>
<filename name="${util.package}/depend/bcel/"/>
<filename name="${optional.type.package}/depend/ClassFileSetTest*"/>
</or>
</selector>

<selector id="needs.apache-log4j">
<filename name="${ant.package}/listener/Log4jListener*"/>
</selector>

<selector id="needs.commons-logging">
<filename name="${ant.package}/listener/CommonsLoggingListener*"/>
</selector>

<selector id="needs.apache-bsf">
<or>
<filename name="${util.package}/ScriptRunner.*"/>
<filename name="${util.package}/optional/ScriptRunner*"/>
</or>
</selector>

<selector id="needs.javamail">
<or>
<filename name="${ant.package}/taskdefs/email/MimeMailer*"/>
</or>
</selector>

<selector id="needs.netrexx">
<filename name="${optional.package}/NetRexxC*"/>
</selector>

<selector id="needs.commons-net">
<or>
<filename name="${optional.package}/net/FTP*"/>
<filename name="${optional.package}/net/RExec*"/>
<filename name="${optional.package}/net/TelnetTask*"/>
</or>
</selector>

<selector id="needs.antlr">
<filename name="${optional.package}/ANTLR*"/>
</selector>

<selector id="needs.jmf">
<filename name="${optional.package}/sound/"/>
</selector>

<selector id="needs.jai">
<or>
<filename name="${optional.package}/image/"/>
<filename name="${optional.type.package}/image/"/>
</or>
</selector>

<selector id="needs.jdepend">
<filename name="${optional.package}/jdepend/"/>
</selector>

<selector id="needs.swing">
<filename name="${optional.package}/splash/"/>
</selector>

<selector id="needs.jsch">
<filename name="${optional.package}/ssh/"/>
</selector>

<!-- needs TraceListenerEx3 interface implemented by PrintTraceListener -->
<selector id="needs.apache-xalan2">
<filename name="${optional.package}/Xalan2TraceSupport*"/>
</selector>

<selector id="ant.launcher">
<filename name="${ant.package}/launch/"/>
</selector>

<patternset id="onlinetests">
<exclude name="**/GetTest.java" if="offline"/>
<exclude name="**/HttpTest.java" if="offline"/>
</patternset>

<patternset id="teststhatfail">
<!-- Property 'run.failing.tests' should force Ant to run these tests. -->
<!-- Because the whole patternset can not be excluded, you have to add -->
<!-- an unless-attribute on each exclude-element. -->
<exclude unless="run.failing.tests" name="${optional.package}/BeanShellScriptTest.java"/>
<exclude unless="run.failing.tests" name="${optional.package}/jdepend/JDependTest.java"/>
</patternset>

<!--tests that need an XML Schema-supporting parser to work-->
<selector id="needs.xmlschema">
<or>
<filename name="${optional.package}/SchemaValidateTest.*"/>
<filename name="${optional.package}/XmlValidateTest.*"/>
</or>
</selector>

<!--
===================================================================
Set up a patternsets that matches the parts of our JUnit testsuite
that may be useful for task developers.
===================================================================
-->
<patternset id="useful.tests">
<include name="${ant.package}/BuildFileTest*"/>
<include name="${regexp.package}/RegexpMatcherTest*"/>
<include name="${regexp.package}/RegexpTest*"/>
<include name="${optional.package}/AbstractXSLTLiaisonTest*"/>
<include name="${ant.package}/types/AbstractFileSetTest*"/>
</patternset>

<!--
===================================================================
Set up a patternsets that matches the parts of our site that
should not be part of the distribution.
===================================================================
-->
<patternset id="site.excludes">
<exclude name="bindownload.html"/>
<exclude name="srcdownload.html"/>
<exclude name="*.cgi"/>
</patternset>

<!--
===================================================================
Check to see what optional dependencies are available
===================================================================
-->
<target name="check_for_optional_packages">
<condition property="ignoresystemclasses">
<not>
<equals arg1="${build.sysclasspath}" arg2="only"/>
</not>
</condition>
<property name="ignoresystemclasses" value="false"/>
<available property="jdk1.5+" classname="java.net.Proxy"/>
<available property="jdk1.6+" classname="java.net.CookieStore"/>
<available property="jdk1.7+" classname="java.nio.file.FileSystem"/>
<available property="kaffe" classname="kaffe.util.NotImplemented"/>
<available property="harmony"
classname="org.apache.harmony.luni.util.Base64"/>
<available property="bsf.present"
classname="org.apache.bsf.BSFManager"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="netrexx.present"
classname="netrexx.lang.Rexx"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="apache.resolver.present"
classname="org.apache.xml.resolver.tools.CatalogResolver"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="recent.xalan2.present"
classname="org.apache.xalan.trace.TraceListenerEx3"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="junit.present"
classname="junit.framework.TestCase"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<condition property="junit4.present">
<and>
<!-- Need JDK 5+ to compile since junit-4*.jar uses new bytecode format -->
<available classname="java.net.Proxy"/>
<available
classname="org.junit.Test"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
</and>
</condition>
<available property="antunit.present"
classname="org.apache.ant.antunit.AntUnit"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="commons.net.present"
classname="org.apache.commons.net.ftp.FTPClient"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="antlr.present"
classname="antlr.Tool"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="apache.regexp.present"
classname="org.apache.regexp.RE"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="apache.oro.present"
classname="org.apache.oro.text.regex.Perl5Matcher"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="jmf.present"
classname="javax.sound.sampled.Clip"
classpathref="classpath"/>
<available property="jai.present"
classname="javax.media.jai.JAI"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="jdepend.present"
classname="jdepend.framework.JDepend"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="log4j.present"
classname="org.apache.log4j.Logger"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="commons.logging.present"
classname="org.apache.commons.logging.LogFactory"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="xalan.envcheck"
classname="org.apache.xalan.xslt.EnvironmentCheck"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="which.present"
classname="org.apache.env.Which"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>

<available property="xerces.present"
classname="org.apache.xerces.parsers.SAXParser"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="bcel.present"
classname="org.apache.bcel.Constants"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>

<condition property="javamail.complete">
<and>
<available classname="javax.activation.DataHandler"
classpathref="classpath"/>
<available classname="javax.mail.Transport"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
</and>
</condition>

<condition property="tests.and.ant.share.classloader">
<or>
<equals arg1="${junit.fork}" arg2="true"/>
<equals arg1="${build.sysclasspath}" arg2="only"/>
</or>
</condition>

<condition property="sun.tools.present">
<and>
<available classname="sun.tools.native2ascii.Main"/>
<available classname="com.sun.tools.javah.Main"/>
</and>
</condition>

<condition property="tests.are.on.system.classpath">
<or>
<resourcecount count="1">
<intersect>
<path path="${java.class.path}" />
<file file="${build.tests}" />
</intersect>
</resourcecount>
<istrue value="${junit.fork}"/>
</or>
</condition>

<echo level="verbose"> tests.are.on.system.classpath=${tests.are.on.system.classpath}</echo>

<condition property="jasper.present">
<and>
<available classname="org.apache.jasper.compiler.Compiler"/>
<available classname="org.apache.jasper.JasperException"/>
</and>
</condition>

<condition property="swing.present">
<or>
<not>
<isset property="kaffe"/>
</not>
<available classname="javax.swing.ImageIcon"
classpathref="classpath"/>
</or>
</condition>

<!-- http client needs commons logging -->
<condition property="apache-httpclient.present">
<and>
<available
classname="org.apache.commons.httpclient.HttpClient"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<isset property="commons.logging.present"/>
</and>
</condition>

<available property="rhino.present"
classname="org.mozilla.javascript.Scriptable"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="beanshell.present"
classname="bsh.StringUtil"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="xerces1.present"
classname="org.apache.xerces.framework.XMLParser"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>
<available property="jsch.present"
classname="com.jcraft.jsch.Session"
classpathref="classpath" ignoresystemclasses="${ignoresystemclasses}"/>

<property name="build.compiler" value="modern"/>

<!--check for XSD support in the parser-->
<condition property="xmlschema.present">
<or>
<parsersupports
feature="http://apache.org/xml/features/validation/schema"/>
<parsersupports
feature="http://java.sun.com/xml/jaxp/properties/schemaSource"/>
</or>
</condition>

</target>


<!--
===================================================================
Prepare the build
===================================================================
-->
<target name="prepare">
<tstamp>
<format property="year" pattern="yyyy"/>
</tstamp>
<filterchain id="ant.filters">
<expandproperties/>
</filterchain>
</target>

<!--
===================================================================
Build the code
===================================================================
-->
<target name="build"
depends="prepare, check_for_optional_packages"
description="--> compiles the source code">
<mkdir dir="${build.dir}"/>
<mkdir dir="${build.classes}"/>
<mkdir dir="${build.lib}"/>

<javac srcdir="${java.dir}"
includeantruntime="false"
destdir="${build.classes}"
debug="${debug}"
deprecation="${deprecation}"
target="${javac.target}"
source="${javac.source}"
optimize="${optimize}">
<classpath refid="classpath"/>

<selector id="conditional-patterns">
<not>
<or>
<selector refid="needs.jdk1.5+" unless="jdk1.5+"/>
<selector refid="not.in.kaffe" if="kaffe"/>

<selector refid="needs.apache-resolver" unless="apache.resolver.present"/>
<selector refid="needs.junit" unless="junit.present"/>
<selector refid="needs.junit4" unless="junit4.present"/>
<selector refid="needs.apache-regexp"
unless="apache.regexp.present"/>
<selector refid="needs.apache-oro" unless="apache.oro.present"/>
<selector refid="needs.apache-bcel" unless="bcel.present"/>
<selector refid="needs.apache-log4j" unless="log4j.present"/>
<selector refid="needs.commons-logging"
unless="commons.logging.present"/>
<selector refid="needs.apache-bsf" unless="bsf.present"/>
<selector refid="needs.javamail" unless="javamail.complete"/>
<selector refid="needs.netrexx" unless="netrexx.present"/>
<selector refid="needs.commons-net" unless="commons.net.present"/>
<selector refid="needs.antlr" unless="antlr.present"/>
<selector refid="needs.jmf" unless="jmf.present"/>
<selector refid="needs.jai" unless="jai.present"/>
<selector refid="needs.jdepend" unless="jdepend.present"/>
<selector refid="needs.swing" unless="swing.present"/>
<selector refid="needs.jsch" unless="jsch.present"/>
<selector refid="needs.xmlschema" unless="xmlschema.present"/>
<selector refid="needs.apache-xalan2"
unless="recent.xalan2.present"/>
<!-- Java 1.4's built-in Xalan is first on the classpath -->
<selector refid="needs.apache-xalan2" unless="jdk1.5+"/>
</or>
</not>
</selector>
</javac>

<copy todir="${build.classes}">
<fileset dir="${java.dir}">
<include name="**/*.properties"/>
<include name="**/*.dtd"/>
<include name="**/*.xml"/>
</fileset>
<fileset dir="${resource.dir}" />
</copy>

<copy todir="${build.classes}"
overwrite="true" encoding="UTF-8">
<fileset dir="${java.dir}">
<include name="**/version.txt"/>
<include name="**/defaultManifest.mf"/>
</fileset>
<filterchain refid="ant.filters"/>
</copy>

<copy todir="${build.classes}/${optional.package}/junit/xsl">
<fileset dir="${etc.dir}">
<include name="junit-frames.xsl"/>
<include name="junit-noframes.xsl"/>
</fileset>
</copy>
</target>

<!--
===================================================================
Create the all of the Apache Ant jars
===================================================================
-->
<target name="jars"
depends="build"
description="--> creates the Apache Ant jars">

<copy todir="${build.dir}">
<fileset dir="${basedir}">
<include name="LICENSE"/>
<include name="LICENSE.xerces"/>
<include name="LICENSE.dom"/>
<include name="LICENSE.sax"/>
<include name="NOTICE"/>
</fileset>
<mapper type="glob" from="*" to="*.txt"/>
</copy>

<copy file="${manifest}" tofile="${manifest.tmp}"/>
<manifest file="${manifest.tmp}">
<section name="${optional.package}/">
<attribute name="Extension-name"
value="org.apache.tools.ant"/>
<attribute name="Specification-Title"
value="Apache Ant"/>
<attribute name="Specification-Version"
value="${manifest-version}"/>
<attribute name="Specification-Vendor"
value="Apache Software Foundation"/>
<attribute name="Implementation-Title"
value="org.apache.tools.ant"/>
<attribute name="Implementation-Version"
value="${manifest-version}"/>
<attribute name="Implementation-Vendor"
value="Apache Software Foundation"/>
</section>
</manifest>

<jar destfile="${build.lib}/${name}-launcher.jar"
basedir="${build.classes}"
whenmanifestonly="fail">
<selector refid="ant.launcher"/>
<manifest>
<attribute name="Main-Class" value="org.apache.tools.ant.launch.Launcher"/>
</manifest>
</jar>

<jar destfile="${build.lib}/${name}.jar"
basedir="${build.classes}"
manifest="${manifest}"
whenmanifestonly="fail">
<not>
<or>
<!-- Verification: (cd dist/lib; for j in *.jar; do jar tf $j; done) | egrep -v '/$|META-INF/MANIFEST\.MF' | sort | uniq -d -->
<selector refid="needs.antlr"/>
<selector refid="needs.apache-bcel"/>
<selector refid="needs.apache-bsf"/>
<selector refid="needs.apache-log4j"/>
<selector refid="needs.apache-oro"/>
<selector refid="needs.apache-regexp"/>
<selector refid="needs.apache-resolver"/>
<selector refid="needs.apache-xalan2"/>
<selector refid="needs.commons-logging"/>
<selector refid="needs.commons-net"/>
<selector refid="needs.jai"/>
<selector refid="needs.javamail"/>
<selector refid="needs.jdepend"/>
<selector refid="needs.jmf"/>
<selector refid="needs.jsch"/>
<selector refid="needs.junit"/>
<selector refid="needs.junit4"/>
<selector refid="needs.netrexx"/>
<selector refid="needs.swing"/>
<selector refid="ant.launcher"/>
</or>
</not>
<metainf dir="${build.dir}">
<include name="LICENSE.txt"/>
<include name="NOTICE.txt"/>
</metainf>

<manifest>
<section name="${ant.package}/">
<attribute name="Extension-name"
value="org.apache.tools.ant"/>
<attribute name="Specification-Title"
value="Apache Ant"/>
<attribute name="Specification-Version"
value="${manifest-version}"/>
<attribute name="Specification-Vendor"
value="Apache Software Foundation"/>
<attribute name="Implementation-Title"
value="org.apache.tools.ant"/>
<attribute name="Implementation-Version"
value="${manifest-version}"/>
<attribute name="Implementation-Vendor"
value="Apache Software Foundation"/>
</section>
</manifest>

<fileset dir="${docs.dir}">
<include name="images/ant_logo_large.gif"/>
</fileset>
</jar>

<jar destfile="${build.lib}/${bootstrap.jar}"
basedir="${build.classes}"
manifest="${manifest}"
whenmanifestonly="fail">
<include name="${ant.package}/Main.class"/>
<metainf dir="${build.dir}">
<include name="LICENSE.txt"/>
<include name="NOTICE.txt"/>
</metainf>
<manifest>
<attribute name="Class-Path"
value="ant.jar xalan.jar"/>
</manifest>
</jar>

<macrodef name="optional-jar">
<attribute name="dep"/>
<sequential>
<jar destfile="${build.lib}/${optional.jars.prefix}-@{dep}.jar"
basedir="${build.classes}"
manifest="${manifest.tmp}"
whenmanifestonly="${optional.jars.whenmanifestonly}">
<selector refid="needs.@{dep}"/>
</jar>
</sequential>
</macrodef>

<optional-jar dep="apache-resolver"/>
<optional-jar dep="junit"/>
<optional-jar dep="junit4"/>
<optional-jar dep="apache-regexp"/>
<optional-jar dep="apache-oro"/>
<optional-jar dep="apache-bcel"/>
<optional-jar dep="apache-log4j"/>
<optional-jar dep="commons-logging"/>
<optional-jar dep="apache-bsf"/>
<optional-jar dep="javamail"/>
<optional-jar dep="netrexx"/>
<optional-jar dep="commons-net"/>
<optional-jar dep="antlr"/>
<optional-jar dep="jmf"/>
<optional-jar dep="jai"/>
<optional-jar dep="swing"/>
<optional-jar dep="jsch"/>
<optional-jar dep="jdepend"/>
<optional-jar dep="apache-xalan2"/>

</target>

<!-- Creates jar of test utility classes -->
<target name="test-jar"
depends="compile-tests"
description="--> creates the Apache Ant Test Utilities jar">

<fail unless="junit.present">
We cannot build the test jar unless JUnit is present,
as JUnit is needed to compile the test classes.
</fail>
<jar destfile="${build.lib}/${name}-testutil.jar"
basedir="${build.tests}">
<patternset refid="useful.tests"/>
</jar>
</target>

<!--
===================================================================
Create the essential distribution that can run Apache Ant
===================================================================
-->
<target name="dist-lite"
depends="jars,test-jar"
description="--> creates a minimum distribution to run Apache Ant">

<mkdir dir="${dist.dir}"/>
<mkdir dir="${dist.bin}"/>
<mkdir dir="${dist.lib}"/>

<copy todir="${dist.lib}">
<fileset dir="${build.lib}">
<exclude name="${bootstrap.jar}"/>
</fileset>
</copy>

<copy todir="${dist.lib}">
<fileset dir="${lib.dir}">
<include name="*.jar"/>
<include name="*.zip"/>
</fileset>
</copy>

<copy todir="${dist.bin}">
<fileset dir="${script.dir}"/>
</copy>

<fixcrlf srcdir="${dist.bin}" eol="dos" includes="*.bat,*.cmd"/>
<fixcrlf srcdir="${dist.bin}" eol="unix">
<include name="ant"/>
<include name="antRun"/>
<include name="*.pl"/>
</fixcrlf>

<chmod perm="ugo+rx" dir="${dist.dir}" type="dir" includes="**"
failonerror="${chmod.fail}"/>
<chmod perm="ugo+r" dir="${dist.dir}" type="file" includes="**"
failonerror="${chmod.fail}" maxparallel="${chmod.maxparallel}"/>
<chmod perm="ugo+x" type="file" failonerror="${chmod.fail}">
<fileset dir="${dist.bin}">
<include name="**/ant"/>
<include name="**/antRun"/>
<include name="**/*.pl"/>
<include name="**/*.py"/>
</fileset>
</chmod>

</target>

<!--
===================================================================
Create the complete distribution
===================================================================
-->
<target name="dist" description="--> creates a complete distribution">
<antcall inheritAll="false" target="internal_dist">
<param name="dist.dir" value="${dist.name}"/>
</antcall>
</target>

<target name="dist_javadocs" depends="javadocs" if="jdk1.5+">
<mkdir dir="${dist.javadocs}"/>
<copy todir="${dist.javadocs}" overwrite="true">
<fileset dir="${build.javadocs}"/>
</copy>
</target>


<macrodef name="checksums-mvn" description="only md5 and sha1 are needed for the maven directory structure">
<element name="resources" implicit="true"/>
<sequential>
<checksum algorithm="md5">
<resources/>
</checksum>
<checksum algorithm="sha1">
<resources/>
</checksum>
</sequential>
</macrodef>
<macrodef name="checksums">
<element name="resources" implicit="true"/>
<sequential>
<checksums-mvn>
<resources/>
</checksums-mvn>
<checksum fileext=".sha512" algorithm="sha-512">
<resources/>
</checksum>
</sequential>
</macrodef>

<target name="internal_dist" depends="dist-lite,dist_javadocs">
<mkdir dir="${dist.docs}"/>
<mkdir dir="${dist.etc}"/>

<copy todir="${dist.lib}" file="${lib.dir}/README"/>
<copy todir="${dist.lib}" file="${lib.dir}/libraries.properties"/>

<copy todir="${dist.lib}">
<fileset dir="${src.dir}/etc/poms">
<include name="*/pom.xml"/>
</fileset>
<mapper type="regexp" from="^(.*)[/\\]pom.xml" to="\1.pom"/>
<filterchain>
<tokenfilter>
<replaceregex pattern="${pom.version}" replace="${project.version}"/>
</tokenfilter>
</filterchain>
</copy>
<copy todir="${dist.lib}">
<fileset dir="${src.dir}/etc/poms">
<include name="pom.xml"/>
</fileset>
<mapper type="glob" from="pom.xml" to="ant-parent.pom"/>
<filterchain>
<tokenfilter>
<replaceregex pattern="${pom.version}" replace="${project.version}"/>
</tokenfilter>
</filterchain>
</copy>


<copy todir="${dist.docs}">
<fileset dir="${docs.dir}" includes="${expandproperty.files}">
<patternset refid="site.excludes"/>
</fileset>
<filterchain refid="ant.filters"/>
</copy>

<copy todir="${dist.docs}" filtering="false">
<fileset dir="${docs.dir}" excludes="${expandproperty.files}">
<patternset refid="site.excludes"/>
</fileset>
</copy>

<copy todir="${dist.dir}">
<fileset dir="${basedir}">
<include name="README"/>
<include name="INSTALL"/>
<include name="LICENSE"/>
<include name="LICENSE.xerces"/>
<include name="LICENSE.dom"/>
<include name="LICENSE.sax"/>
<include name="NOTICE"/>
<include name="TODO"/>
<include name="WHATSNEW"/>
<include name="KEYS"/>
<include name="fetch.xml"/>
<include name="get-m2.xml"/>
</fileset>
</copy>

<chmod perm="ugo+rx" dir="${dist.dir}" type="dir" includes="**"
failonerror="${chmod.fail}"/>
<chmod perm="ugo+r" dir="${dist.dir}" type="file" includes="**"
failonerror="${chmod.fail}" maxparallel="${chmod.maxparallel}"/>
<chmod perm="ugo+x" type="file" failonerror="${chmod.fail}">
<fileset dir="${dist.bin}">
<include name="**/ant"/>
<include name="**/antRun"/>
<include name="**/*.pl"/>
<include name="**/*.py"/>
</fileset>
</chmod>

<!-- publish some useful stylesheets -->
<copy todir="${dist.etc}">
<fileset dir="${etc.dir}">
<include name="junit-frames.xsl"/>
<include name="junit-noframes.xsl"/>
<include name="junit-frames-xalan1.xsl"/>
<include name="coverage-frames.xsl"/>
<include name="maudit-frames.xsl"/>
<include name="mmetrics-frames.xsl"/>
<include name="changelog.xsl"/>
<include name="jdepend.xsl"/>
<include name="jdepend-frames.xsl"/>
<include name="checkstyle/*.xsl"/>
<include name="log.xsl"/>
<include name="tagdiff.xsl"/>
</fileset>
<fileset dir="${build.lib}">
<include name="${bootstrap.jar}"/>
</fileset>
</copy>

</target>


<!--
===================================================================
Target to create bootstrap build
===================================================================
-->
<target name="bootstrap" description="--> creates a bootstrap build">
<antcall inheritAll="false" target="dist-lite">
<param name="dist.dir" value="${bootstrap.dir}"/>
</antcall>
</target>


<!--
===================================================================
Create the source distribution
===================================================================
-->
<target name="src-dist"
description="--> creates a source distribution">

<mkdir dir="${src.dist.dir}"/>

<copy todir="${src.dist.lib}">
<fileset dir="${lib.dir}">
<include name="*.jar"/>
<include name="*.zip"/>
<include name="README"/>
<include name="libraries.properties"/>
</fileset>
</copy>

<mkdir dir="${src.dist.lib}/optional"/>

<copy todir="${src.dist.src}">
<fileset dir="${src.dir}"/>
</copy>

<copy todir="${src.dist.docs}">
<fileset dir="${docs.dir}">
<exclude name="manual/api/"/>
<patternset refid="site.excludes"/>
</fileset>
</copy>

<copy todir="${src.dist.dir}">
<fileset dir="${basedir}">
<include name="README"/>
<include name="INSTALL"/>
<include name="LICENSE"/>
<include name="LICENSE.xerces"/>
<include name="LICENSE.dom"/>
<include name="LICENSE.sax"/>
<include name="NOTICE"/>
<include name="TODO"/>
<include name="WHATSNEW"/>
<include name="KEYS"/>
<include name="build.bat"/>
<include name="build.sh"/>
<include name="bootstrap.bat"/>
<include name="bootstrap.sh"/>
<include name="build.xml"/>
<include name="fetch.xml"/>
<include name="get-m2.xml"/>
</fileset>
</copy>

<fixcrlf srcdir="${src.dist.dir}" eol="dos" includes="*.bat,*.cmd"/>
<fixcrlf srcdir="${src.dist.dir}" eol="unix">
<include name="**/*.sh"/>
<include name="**/*.pl"/>
<include name="**/ant"/>
<include name="**/antRun"/>
</fixcrlf>
<fixcrlf srcdir="${src.dist.dir}">
<include name="**/*.java"/>
<exclude name="${tests.etc.dir}/taskdefs/fixcrlf/expected/Junk?.java"/>
<exclude name="${tests.etc.dir}/taskdefs/fixcrlf/input/Junk?.java"/>
</fixcrlf>

<chmod perm="ugo+x" dir="${src.dist.dir}" type="dir"
failonerror="${chmod.fail}"/>
<chmod perm="ugo+r" dir="${src.dist.dir}" failonerror="${chmod.fail}"/>
<chmod perm="ugo+x" failonerror="${chmod.fail}">
<fileset dir="${src.dist.dir}">
<include name="**/.sh"/>
<include name="**/.pl"/>
<include name="**/.py"/>
<include name="**/ant"/>
<include name="**/antRun"/>
</fileset>
</chmod>

</target>

<!--
===================================================================
Create the binary distribution
===================================================================
-->
<target name="main_distribution"
description="--> creates the zip and tar distributions">
<delete dir="${dist.base}"/>
<delete dir="${dist.name}"/>
<delete dir="${java-repository.dir}"/>
<mkdir dir="${dist.base}"/>
<mkdir dir="${dist.base.source}"/>
<mkdir dir="${dist.base.binaries}"/>
<mkdir dir="${dist.base.manual}"/>
<mkdir dir="${java-repository.dir}"/>
<antcall inheritAll="false" target="internal_dist">
<param name="dist.dir" value="${dist.name}"/>
</antcall>
<zip destfile="${dist.base.binaries}/${dist.name}-bin.zip">
<zipfileset dir="${dist.name}/.." filemode="755">
<include name="${dist.name}/bin/ant"/>
<include name="${dist.name}/bin/antRun"/>
<include name="${dist.name}/bin/*.pl"/>
<include name="${dist.name}/bin/*.py"/>
</zipfileset>
<fileset dir="${dist.name}/..">
<include name="${dist.name}/"/>
<exclude name="${dist.name}/bin/ant"/>
<exclude name="${dist.name}/bin/antRun"/>
<exclude name="${dist.name}/bin/*.pl"/>
<exclude name="${dist.name}/bin/*.py"/>
</fileset>
</zip>
<tar longfile="gnu"
destfile="${dist.base.binaries}/${dist.name}-bin.tar">
<!-- removes redundant definition of permissions, but seems to
drop dirs (and to be slow)
<zipfileset src="${dist.base.binaries}/${dist.name}-bin.zip"/>
-->
<tarfileset dir="${dist.name}/.." mode="755" username="ant" group="ant">
<include name="${dist.name}/bin/ant"/>
<include name="${dist.name}/bin/antRun"/>
<include name="${dist.name}/bin/*.pl"/>
<include name="${dist.name}/bin/*.py"/>
</tarfileset>
<tarfileset dir="${dist.name}/.." username="ant" group="ant">
<include name="${dist.name}/"/>
<exclude name="${dist.name}/bin/ant"/>
<exclude name="${dist.name}/bin/antRun"/>
<exclude name="${dist.name}/bin/*.pl"/>
<exclude name="${dist.name}/bin/*.py"/>
</tarfileset>
</tar>
<gzip destfile="${dist.base.binaries}/${dist.name}-bin.tar.gz"
src="${dist.base.binaries}/${dist.name}-bin.tar"/>
<bzip2 destfile="${dist.base.binaries}/${dist.name}-bin.tar.bz2"
src="${dist.base.binaries}/${dist.name}-bin.tar"/>
<delete file="${dist.base.binaries}/${dist.name}-bin.tar"/>

<copy todir="${java-repository.dir}">
<fileset dir="${dist.name}/lib">
<include name="ant*.jar"/>
</fileset>
<mapper type="regexp" from="ant(.*).jar" to="ant\1/${project.version}/ant\1-${project.version}.jar"/>
</copy>
<copy todir="${java-repository.dir}">
<fileset dir="${dist.name}/lib">
<include name="*.pom"/>
</fileset>
<mapper>
<mapper type="regexp" from="ant(.*).pom" to="ant\1/${project.version}/ant\1-${project.version}.pom"/>
</mapper>
</copy>
<checksums-mvn>
<fileset dir="${java-repository.dir}" includes="**/*${project.version}.jar"/>
<fileset dir="${java-repository.dir}" includes="**/*${project.version}.pom"/>
</checksums-mvn>

<zip destfile="${dist.base.manual}/${dist.name}-manual.zip">
<zipfileset dir="${dist.name}/docs/manual" prefix="${dist.name}"/>
<zipfileset file="NOTICE" prefix="${dist.name}"/>
</zip>
<tar longfile="gnu"
destfile="${dist.base.manual}/${dist.name}-manual.tar">
<tarfileset dir="${dist.name}/docs/manual" prefix="${dist.name}"/>
<tarfileset file="NOTICE" prefix="${dist.name}"/>
</tar>
<gzip destfile="${dist.base.manual}/${dist.name}-manual.tar.gz"
src="${dist.base.manual}/${dist.name}-manual.tar"/>
<bzip2 destfile="${dist.base.manual}/${dist.name}-manual.tar.bz2"
src="${dist.base.manual}/${dist.name}-manual.tar"/>
<delete file="${dist.base.manual}/${dist.name}-manual.tar"/>

<delete dir="${dist.name}"/>
<checksums>
<fileset dir="${dist.base.binaries}/">
<exclude name="**/*.asc"/>
<exclude name="**/*.md5"/>
<exclude name="**/*.sha1"/>
<exclude name="**/*.sha512"/>
</fileset>
<fileset dir="${dist.base.manual}/">
<exclude name="**/*.asc"/>
<exclude name="**/*.md5"/>
<exclude name="**/*.sha1"/>
<exclude name="**/*.sha512"/>
</fileset>
</checksums>

<antcall inheritAll="false" target="src-dist">
<param name="src.dist.dir" value="${dist.name}"/>
</antcall>
<zip destfile="${dist.base.source}/${dist.name}-src.zip">
<zipfileset dir="${dist.name}/.." filemode="755">
<include name="${dist.name}/bootstrap.sh"/>
<include name="${dist.name}/build.sh"/>
</zipfileset>
<fileset dir="${dist.name}/..">
<include name="${dist.name}/"/>
<exclude name="${dist.name}/bootstrap.sh"/>
<exclude name="${dist.name}/build.sh"/>
</fileset>
</zip>
<tar longfile="gnu"
destfile="${dist.base.source}/${dist.name}-src.tar">
<!--
<zipfileset src="${dist.base.source}/${dist.name}-src.zip"/>
-->
<tarfileset dir="${dist.name}/.." mode="755" username="ant" group="ant">
<include name="${dist.name}/bootstrap.sh"/>
<include name="${dist.name}/build.sh"/>
</tarfileset>
<tarfileset dir="${dist.name}/.." username="ant" group="ant">
<include name="${dist.name}/"/>
<exclude name="${dist.name}/bootstrap.sh"/>
<exclude name="${dist.name}/build.sh"/>
</tarfileset>
</tar>
<gzip destfile="${dist.base.source}/${dist.name}-src.tar.gz"
src="${dist.base.source}/${dist.name}-src.tar"/>
<bzip2 destfile="${dist.base.source}/${dist.name}-src.tar.bz2"
src="${dist.base.source}/${dist.name}-src.tar"/>
<delete file="${dist.base.source}/${dist.name}-src.tar"/>
<delete dir="${dist.name}"/>
<checksums>
<fileset dir="${dist.base.source}/">
<exclude name="**/*.asc"/>
<exclude name="**/*.md5"/>
<exclude name="**/*.sha1"/>
<exclude name="**/*.sha512"/>
</fileset>
</checksums>
</target>

<target name="distribution" depends="main_distribution"
description="--> creates the full Apache Ant distribution">
</target>

<!--
===================================================================
Upload the distribution to cvs.apache.org for final releases
===================================================================
-->

<target name="init-upload" >
<fail unless="apache.user" message="set a property apache.user with your apache user"/>
<fail unless="ssh.passphrase" message="set a property with your ssh passphrase"/>
<fail unless="ssh.keyfile" message="set a property with your ssh keyfile"/>
<property name="ssh.knownhosts" location="${user.home}/.ssh/known_hosts" />
<property name="ssh.host" value="people.apache.org"/>
<property name="ssh.verbose" value="false"/>
<property name="ssh.base.directory" value="/www/www.apache.org/dist"/>
<property name="ssh.dist.directory" value="${ssh.base.directory}/ant"/>
<property name="ssh.java-repository.directory" value="/www/people.apache.org/repo/m2-ibiblio-rsync-repository/${groupid}"/>
<echo >
Uploading Ant version ${project.version}
to host ${ssh.host} as ${apache.user}
distribution to ${ssh.dist.directory}
maven artefacts to ${ssh.java-repository.directory}
Known hosts = ${ssh.knownhosts}
</echo>
</target>

<!-- create the directories if absent-->
<target name="ssh-mkdirs"
depends="init-upload">
<sshexec username="${apache.user}" host="${ssh.host}"
keyfile="${ssh.keyfile}" passphrase="${ssh.passphrase}"
knownhosts="${ssh.knownhosts}"
command="mkdir -p ${ssh.dist.directory}" />
</target>

<target name="upload" description="--> uploads the distribution"
depends="init-upload,ssh-mkdirs">
<scp todir="${apache.user}@${ssh.host}:${ssh.dist.directory}"
keyfile="${ssh.keyfile}" passphrase="${ssh.passphrase}"
knownhosts="${ssh.knownhosts}"
verbose="${ssh.verbose}" >
<fileset dir="${dist.base}">
<include name="**/*${project.version}*"/>
</fileset>
</scp>
<scp todir="${apache.user}@${ssh.host}:${ssh.java-repository.directory}"
keyfile="${ssh.keyfile}" passphrase="${ssh.passphrase}"
knownhosts="${ssh.knownhosts}"
verbose="${ssh.verbose}">
<fileset dir="java-repository/${groupid}">
<include name="**/*${project.version}*"/>
</fileset>
</scp>
</target>

<!--
===================================================================
Cleans up build and distribution directories
===================================================================
-->
<target name="clean"
description="--> cleans up build and dist directories">
<delete dir="${build.dir}"/>
<delete dir="${dist.base}"/>
<delete dir="${dist.dir}"/>
<delete>
<fileset dir="." includes="**/*~" defaultexcludes="no"/>
</delete>
</target>

<!--
===================================================================
Cleans everything
===================================================================
-->
<target name="allclean"
depends="clean"
description="--> cleans up everything">
<delete file="${bootstrap.dir}/bin/antRun"/>
<delete file="${bootstrap.dir}/bin/antRun.bat"/>
<delete file="${bootstrap.dir}/bin/*.pl"/>
<delete file="${bootstrap.dir}/bin/*.py"/>
</target>

<!--
===================================================================
Installs Apache Ant
===================================================================
-->
<target name="install">
<fail message="You must set the property ant.install=/where/to/install" unless="ant.install"/>
<antcall inheritAll="false" target="internal_dist">
<param name="dist.dir" value="${ant.install}"/>
</antcall>
</target>

<target name="install-lite">
<fail message="You must set the property ant.install=/where/to/install" unless="ant.install"/>
<antcall inheritAll="false" target="dist-lite">
<param name="dist.dir" value="${ant.install}"/>
</antcall>
</target>

<!--
===================================================================
Creates the API documentation
===================================================================
-->
<target name="javadoc_check">
<uptodate property="javadoc.notrequired"
targetfile="${build.javadocs}/packages.html">
<srcfiles dir="${java.dir}" includes="**/*.java"/>
</uptodate>
<uptodate property="tests.javadoc.notrequired"
targetfile="${build.tests.javadocs}/packages.html">
<srcfiles dir="${src.junit}">
<patternset refid="useful.tests"/>
</srcfiles>
</uptodate>
</target>

<target name="javadocs" depends="prepare, javadoc_check, check_for_optional_packages, -javadocs.do, -javadocs.dont"
description="--> creates the API documentation"/>

<target name="-javadocs.dont" unless="jdk1.5+">
<echo>Javadoc creation of Ant's API does not work with JDK 1.4. Please use a newer one.</echo>
</target>
<target name="-javadocs.do" if="jdk1.5+" unless="javadoc.notrequired">
<mkdir dir="${build.javadocs}"/>
<javadoc useexternalfile="yes"
maxmemory="1000M"
destdir="${build.javadocs}"
author="true"
version="true"
locale="en"
windowtitle="${Name} API"
doctitle="${Name}"
failonerror="true"
verbose="${javadoc.verbose}">

<packageset dir="${java.dir}"/>

<!-- hide some meta information for javadoc -->
<tag name="todo" description="To do:" scope="all"/>
<tag name="ant.task" enabled="false" description="Task:" scope="types"/>
<tag name="ant.datatype" enabled="false" description="Data type:" scope="types"/>
<tag name="ant.attribute" enabled="false" description="Attribute:" scope="types"/>
<tag name="ant.attribute.group" enabled="false" description="Attribute group:" scope="types"/>
<tag name="ant.element" enabled="false" description="Nested element:" scope="types"/>
<group title="Apache Ant Core" packages="org.apache.tools.ant*"/>
<group title="Core Tasks" packages="org.apache.tools.ant.taskdefs*"/>
<group title="Core Types" packages="org.apache.tools.ant.types*"/>
<group title="Optional Tasks" packages="org.apache.tools.ant.taskdefs.optional*"/>
<group title="Optional Types" packages="org.apache.tools.ant.types.optional*"/>
<group title="Ant Utilities" packages="org.apache.tools.ant.util*"/>

</javadoc>
</target>

<target name="test-javadocs" depends="prepare, javadoc_check"
unless="tests.javadoc.notrequired"
description="--> creates the API documentation for test utilities">
<mkdir dir="${build.tests.javadocs}"/>
<javadoc useexternalfile="yes"
destdir="${build.tests.javadocs}"
failonerror="true"
author="true"
version="true"
locale="en"
windowtitle="${Name} Test Utilities"
doctitle="${Name}">

<!-- hide some meta information for javadoc -->
<tag name="pre" description="Precondition:" scope="all"/>

<fileset dir="${src.junit}">
<patternset refid="useful.tests"/>
</fileset>

</javadoc>
</target>

<!--
===================================================================
Compile testcases
===================================================================
-->
<target name="compile-tests" depends="build" if="junit.present">
<mkdir dir="${build.tests}"/>

<javac srcdir="${src.junit}"
includeantruntime="false"
destdir="${build.tests}"
debug="${debug}"
target="${javac.target}"
source="${javac.source}"
deprecation="${deprecation}">
<classpath refid="tests-classpath"/>

<selector refid="conditional-patterns"/>
</javac>

<!-- Used by AntlibTest.testAntlibResource: -->
<jar jarfile="${build.tests}/org/apache/tools/ant/taskdefs/test2-antlib.jar">
<manifest>
<attribute name="Extension-name"
value="org.apache.tools.ant"/>
<attribute name="Specification-Title"
value="Apache Ant"/>
<attribute name="Specification-Version"
value="${manifest-version}"/>
<attribute name="Specification-Vendor"
value="Apache Software Foundation"/>
<attribute name="Implementation-Title"
value="org.apache.tools.ant"/>
<attribute name="Implementation-Version"
value="${manifest-version}"/>
<attribute name="Implementation-Vendor"
value="Apache Software Foundation"/>
</manifest>
<zipfileset dir="${tests.etc.dir}" fullpath="taskdefs/test.antlib.xml">
<include name="taskdefs/test2.antlib.xml"/>
</zipfileset>
</jar>
</target>

<target name="dump-info" depends="dump-sys-properties,run-which"/>

<target name="dump-sys-properties" unless="which.present"
depends="xml-check">
<echo message="java.vm.info=${java.vm.info}"/>
<echo message="java.vm.name=${java.vm.name}"/>
<echo message="java.vm.vendor=${java.vm.vendor}"/>
<echo message="java.vm.version=${java.vm.version}"/>
<echo message="os.arch=${os.arch}"/>
<echo message="os.name=${os.name}"/>
<echo message="os.version=${os.version}"/>
<echo message="file.encoding=${file.encoding}"/>
<echo message="user.language=${user.language}"/>
<echo message="ant.version=${ant.version}"/>
</target>

<!-- helper class from Xalan2 to check for jar versioning of xml/xsl processors -->
<target name="xml-check" depends="check_for_optional_packages"
if="xalan.envcheck" unless="which.present">
<java classname="org.apache.xalan.xslt.EnvironmentCheck"/>
</target>

<target name="run-which" depends="check_for_optional_packages"
if="which.present">
<java classname="org.apache.env.Which" taskname="which"/>
</target>

<!-- test to see if we are online or not. can take a while when we are off line, so
setting the property is a good shortcut-->
<target name="probe-offline">
<condition property="offline">
<or>
<isset property="offline"/>
<not>
<http url="http://www.apache.org/"/>
</not>
</or>
</condition>
<echo level="verbose"> offline=${offline}</echo>
</target>

<!--
===================================================================
Run testcase
===================================================================
-->

<target name="check-failed">
<condition property="tests.failed">
<or>
<isset property="junit.failed" />
<isset property="antunit.failed" />
</or>
</condition>
</target>

<target name="test" description="--> run unit tests and reports"
depends="dump-info,junit-report,antunit-report,check-failed">
<fail if="tests.failed" unless="ignore.tests.failed">Unit tests failed;
see ${build.junit.reports} / ${antunit.reports}
</fail>
</target>

<target name="run-tests" depends="dump-info,junit-tests,antunit-tests,check-failed"
description="--> run unit tests without reports">
<fail if="tests.failed" message="Unit tests failed" />
</target>

<target name="test-init" depends="probe-offline,check_for_optional_packages">
<macrodef name="test-junit">
<element name="junit-nested" implicit="true" />
<sequential>
<!-- Delete 'old' collector classes -->
<delete failonerror="false">
<fileset dir="${junit.collector.dir}" includes="${junit.collector.class}*.class"/>
</delete>
<!-- compile the FailedTests class if present -->
<mkdir dir="${junit.collector.dir}"/>
<!-- FIXME: removed junit collector build code
<javac srcdir="${junit.collector.dir}" destdir="${junit.collector.dir}">
<classpath id="failure.cp">
<pathelement location="${build.classes}"/>
<pathelement location="${build.tests}"/>
</classpath>
</javac>
-->
<available file="${junit.collector.dir}/${junit.collector.class}.class"
property="hasFailingTests"/>
<!-- run the tests -->
<mkdir dir="${build.junit.xml}" />
<property name="test.junit.vmargs" value=""/>
<property name="ant.junit.failureCollector"
value="${junit.collector.dir}/${junit.collector.class}"/>
<!-- XXX includeantruntime="false" does not solve "multiple versions of ant detected in path for junit" warning -->
<junit printsummary="${junit.summary}"
haltonfailure="${test.haltonfailure}"
fork="${junit.fork}"
forkmode="${junit.forkmode}"
failureproperty="junit.failed"
errorproperty="junit.failed"
filtertrace="${junit.filtertrace}">
<sysproperty key="ant.home" value="${ant.home}"/>
<sysproperty key="build.tests" file="${build.tests}"/>
<sysproperty key="build.tests.value" value="${build.tests.value}"/>
<sysproperty key="offline" value="${offline}"/>
<sysproperty key="tests-classpath.value"
value="${toString:tests-runtime-classpath}"/>
<sysproperty key="root" file="${basedir}"/>
<sysproperty key="build.compiler" value="${build.compiler}"/>
<sysproperty key="tests.and.ant.share.classloader"
value="${tests.and.ant.share.classloader}"/>
<classpath>
<path refid="tests-runtime-classpath"/>
<pathelement location="${junit.collector.dir}"/>
<!-- FIXME: remove failure collector build code for the moment
<path refid="failure.cp"/>
-->
</classpath>
<!-- FIXME: remove failure collector build code for the moment
<formatter type="failure" usefile="false"/>
-->
<formatter type="xml"/>
<jvmarg line="${test.junit.vmargs}"/>
<!-- FIXME: remove failure collector build code for the moment
<test name="${junit.collector.class}" if="hasFailingTests"/>
-->
<junit-nested />
</junit>
</sequential>
</macrodef>

<fail>"testcase" cannot be specified with "junit.testcase" or "antunit.testcase".
<condition>
<and>
<isset property="testcase" />
<or>
<isset property="antunit.testcase" />
<isset property="junit.testcase" />
</or>
</and>
</condition>
</fail>

<condition property="antunit.testcase" value="${testcase}">
<available file="${src.antunit}/${testcase}" />
</condition>

<condition property="junit.testcase" value="${testcase}">
<available classname="${testcase}" classpathref="tests-runtime-classpath" ignoresystemclasses="${ignoresystemclasses}"/>
</condition>

<fail>Cannot locate test ${testcase}
<condition>
<and>
<isset property="testcase" />
<not>
<or>
<isset property="antunit.testcase" />
<isset property="junit.testcase" />
</or>
</not>
</and>
</condition>
</fail>

<condition property="run.junit">
<and>
<not><equals arg1="${testcase}" arg2="${antunit.testcase}" /></not>
<isset property="junit.present" />
<available file="${src.junit}" />
</and>
</condition>

<condition property="junit.single">
<and>
<isset property="junit.testcase" />
<isset property="run.junit" />
</and>
</condition>

<condition property="junit.batch">
<and>
<not><isset property="junit.testcase" /></not>
<isset property="run.junit" />
</and>
</condition>

<condition property="run.antunit">
<and>
<not><equals arg1="${testcase}" arg2="${junit.testcase}" /></not>
<isset property="antunit.present" />
<available file="${src.antunit}" />
</and>
</condition>

<condition property="run.antunit.report">
<isset property="run.antunit" />
</condition>

<condition property="run.junit.report">
<isset property="run.junit" />
</condition>
</target>

<target name="junit-report" depends="junit-tests,junit-report-only" />

<target name="junit-report-only" depends="test-init" if="run.junit.report">
<mkdir dir="${build.junit.reports}" />
<junitreport todir="${build.junit.reports}">
<fileset dir="${build.junit.xml}">
<include name="TEST-*.xml"/>
</fileset>
<report format="frames" todir="${build.junit.reports}"/>
</junitreport>
</target>

<target name="junit-tests" depends="junit-batch,junit-single-test" />

<target name="junit-batch" depends="compile-tests,test-init"
if="junit.batch">

<property name="junit.includes" value="**/*Test*" />
<property name="junit.excludes" value="" />

<test-junit>
<formatter type="brief" usefile="false"/>

<batchtest todir="${build.junit.xml}" unless="hasFailingTests">
<fileset dir="${src.junit}"
includes="${junit.includes}" excludes="${junit.excludes}">

<!-- abstract classes, not testcases -->
<exclude name="${taskdefs.package}/TaskdefsTest.java"/>
<exclude name="${ant.package}/BuildFileTest.java"/>
<exclude name="${regexp.package}/RegexpMatcherTest.java"/>
<exclude name="${regexp.package}/RegexpTest.java"/>
<exclude name="${optional.package}/AbstractXSLTLiaisonTest.java"/>
<exclude name="${ant.package}/types/AbstractFileSetTest.java"/>
<exclude name="${ant.package}/types/selectors/BaseSelectorTest.java"/>

<!-- helper classes, not testcases -->
<exclude name="org/example/"/>
<exclude name="${taskdefs.package}/TaskdefTest*Task.java"/>
<exclude name="${optional.package}/junit/TestFormatter.java"/>

<!-- interactive tests -->
<exclude name="${taskdefs.package}/TestProcess.java"/>
<exclude name="${optional.package}/splash/SplashScreenTest.java"/>

<!-- only run these tests if their required libraries are
installed -->
<selector refid="conditional-patterns"/>

<!-- tests excluded if the test is run in offline mode -->
<patternset refid="onlinetests"/>

<!-- failing tests excluded unless run.failing.tests is set -->
<patternset refid="teststhatfail"/>

<!-- needs BSF to work -->
<exclude name="${optional.package}/Rhino*.java"
unless="bsf.present"/>
<exclude name="${optional.package}/Rhino*.java"
unless="rhino.present"/>
<exclude name="${optional.package}/script/*.java"
unless="bsf.present"/>
<exclude name="${optional.package}/script/*.java"
unless="rhino.present"/>
<exclude name="${optional.package}/BeanShellScriptTest.java"
unless="bsf.present"/>
<exclude name="${optional.package}/BeanShellScriptTest.java"
unless="beanshell.present"/>
<exclude name="${optional.type.package}/Script*.java"
unless="bsf.present"/>
<exclude name="${optional.type.package}/Script*.java"
unless="rhino.present"/>

<!-- fail if testcases can be loaded from the system classloader -->
<exclude name="${ant.package}/AntClassLoaderDelegationTest.java"
if="tests.are.on.system.classpath"/>
<exclude name="${optional.package}/junit/JUnitClassLoaderTest.java"
if="tests.are.on.system.classpath"/>

<!-- these tests need to be localised before being ran???? -->
<exclude name="${optional.package}/PvcsTest.java"/>

<exclude name="${optional.package}/junit/JUnitReportTest.java"
unless="run.junitreport"/>

<!-- needs xerces to work -->
<exclude name="${ant.package}/IncludeTest.java"
unless="xerces1.present"/>
<exclude name="${type.package}/selectors/ModifiedSelectorTest.java"
unless="xerces1.present"/>

<!-- needs resolver.jar to work -->
<exclude name="${optional.package}/XmlValidateCatalogTest.java"
unless="apache.resolver.present"/>

<!-- needs jasperc -->
<exclude name="${optional.package}/JspcTest.java"
unless="jasper.present"/>

<!-- These tests only passes if testcases and Ant classes have
been loaded by the same classloader - will throw
IllegalAccessExceptions otherwise. -->
<exclude name="${taskdefs.package}/SQLExecTest.java"
unless="tests.and.ant.share.classloader"/>
<exclude name="${taskdefs.package}/cvslib/ChangeLogWriterTest.java"
unless="tests.and.ant.share.classloader"/>
<exclude name="${taskdefs.package}/cvslib/ChangeLogParserTest.java"
unless="tests.and.ant.share.classloader"/>
<exclude name="${optional.package}/sos/SOSTest.java"
unless="tests.and.ant.share.classloader"/>
<exclude name="${optional.package}/vss/MSVSSTest.java"
unless="tests.and.ant.share.classloader"/>
<exclude name="${optional.package}/TraXLiaisonTest.java"
unless="tests.and.ant.share.classloader"/>
<exclude name="${taskdefs.package}/ProcessDestroyerTest.java"
unless="tests.and.ant.share.classloader"/>
<exclude name="${taskdefs.package}/ProtectedJarMethodsTest.java"
unless="tests.and.ant.share.classloader"/>
<exclude name="${ant.package}/launch/LocatorTest.java"
unless="tests.and.ant.share.classloader"/>
<exclude name="${ant.package}/DefaultLoggerTest.java"
unless="tests.and.ant.share.classloader"/>
<exclude name="${taskdefs.package}/ZipExtraFieldTest.java"
unless="tests.and.ant.share.classloader"/>

<!-- can only run if cvs is installed on your machine
enable by setting the property have.cvs
-->
<exclude name="${taskdefs.package}/AbstractCvsTaskTest.java"
unless="have.cvs"/>

<!-- needs a local ftp server and the entry of a user/password combination -->
<exclude name="${optional.package}/net/FTPTest.java"/>

<!-- test needs special setup -->
<exclude name="${optional.package}/ssh/ScpTest.java"/>

<!-- test fails if build/classes and ant.jar are using the same
classloader -->
<exclude name="${ant.package}/util/ClasspathUtilsTest.java"
if="tests.and.ant.share.classloader"/>
</fileset>
</batchtest>
</test-junit>
</target>

<target name="junit-single-test" depends="compile-tests,junit-single-test-only"
description="--> runs the single unit test at $${junit.testcase}" />

<target name="junit-single-test-only" depends="test-init" if="junit.single"
description="--> runs the single unit test at $${junit.testcase} (no compile)">
<test-junit>
<formatter type="plain" usefile="false"/>
<test name="${junit.testcase}" todir="${build.junit.xml}"/>
</test-junit>
</target>

<target name="interactive-tests" description="--> runs interactive tests"
depends="compile-tests"
>
<java classpathref="tests-runtime-classpath"
classname="org.apache.tools.ant.taskdefs.TestProcess"
fork="true"/>
</target>

<target name="antunit-tests" depends="dump-info,build,test-init"
if="run.antunit" description="--> run the antunit tests">

<condition property="antunit.includes" value="${antunit.testcase}"
else="**/test.xml,**/*-test.xml">
<isset property="antunit.testcase" />
</condition>

<property name="antunit.excludes" value="" />

<mkdir dir="${antunit.xml}" />
<au:antunit xmlns:au="antlib:org.apache.ant.antunit"
failonerror="false" errorproperty="antunit.failed">
<fileset dir="${src.antunit}" includes="${antunit.includes}"
excludes="${antunit.excludes}" />
<au:plainlistener logLevel="${antunit.loglevel}"/>
<au:xmllistener todir="${antunit.xml}" />
</au:antunit>
</target>

<target name="antunit-report" depends="antunit-tests,antunit-report-only" />

<target name="antunit-report-only" depends="test-init" if="run.antunit.report">
<length>
<fileset dir="${antunit.xml}" includes="TEST-*.xml" />
</length>
<mkdir dir="${antunit.reports}" />
<junitreport todir="${antunit.reports}">
<fileset dir="${antunit.xml}" includes="TEST-*.xml" />
<report styledir="${src.antunit}" format="frames"
todir="${antunit.reports}"/>
</junitreport>
<length>
<fileset dir="${antunit.xml}" includes="TEST-*.xml" />
</length>
</target>


<target name="printFailingTests">
<property name="failingtests.dir" value="${build.dir}/errors"/>
<mkdir dir=""/>
<xslt
style="${etc.dir}/printFailingTests.xsl"
destdir="${failingtests.dir}" extension=".txt"
basedir="${build.dir}" includes="testcases/**/TEST-*.xml,antunit/xml/TEST-*.xml"
/>
<echo>+-------------------------------------------------------------------------------------</echo>
<echo>| FAILING TESTS:</echo>
<echo>+-------------------------------------------------------------------------------------</echo>
<concat>
<!-- generated message files if they arent empty -->
<fileset dir="${failingtests.dir}">
<size value="0" when="more"/>
</fileset>
<!-- 'skip' empty lines -->
<filterchain>
<linecontains>
<contains value="|"/>
</linecontains>
</filterchain>
</concat>
<echo>+-------------------------------------------------------------------------------------</echo>
</target>

<!--
===================================================================
Main target - runs dist-lite by default
===================================================================
-->
<target name="main"
description="--> creates a minimum distribution in ./dist"
depends="dist-lite"/>


<!--
===================================================================
MSI target - creates an MSI installer file with the help of
the WiX toolset and the dotnet Antlib.
===================================================================
-->
<target name="msi"
description="--> creates an MSI file for Ant, requires WiX and the dotnet Antlib"
depends="internal_dist"
xmlns:dn="antlib:org.apache.ant.dotnet">

<property name="msi.dir" value="${build.dir}"/>
<property name="msi.name" value="${name}-${project.version}.msi"/>
<property name="msi.file" value="${msi.dir}/${msi.name}"/>
<property name="wix.home" value="${user.home}/wix"/>
<property name="wixobj.dir" value="${build.dir}/wix"/>

<property name="dist.dir.resolved" location="${dist.dir}"/>

<mkdir dir="${wixobj.dir}"/>

<dn:wix target="${msi.file}"
mode="both" wixHome="${wix.home}" wixobjDestDir="${wixobj.dir}">
<sources dir="${etc.dir}" includes="*.wxs"/>
<moresources dir="${dist.dir}"/>

<candleParameter name="dist.dir" value="${dist.dir.resolved}"/>
<candleParameter name="version" value="${manifest-version}"/>
</dn:wix>
</target>

</project>

感谢,Thanks!

作者:
iTech
出处:http://itech.cnblogs.com/
本文版权归作者iTech所有,转载请包含作者签名和出处,不得用于商业用途,非则追究法律责任!

分享到:
评论

相关推荐

    Ant_build.xml配置实例

    Ant_build.xml配置实例,Ant的详细配置,很实用

    ant build.xml 使用实例

    演示 build.xml 是编写方法,适合 ant build 初学者,解压,进入 ant 目录, 运行命令 ant 既可

    Eclipse+Web开发从入门到精通(实例版)

    4.3 用 build.xml 编写Ant 部署文件实例... 67 4.3.1 编写 build.xml 文件之前的准备... 68 4.3.2 使用 property 定义属性实例... 68 4.3.3 生成Java 实例程序... 69 4.3.4 使用编译任务编译Java 类...

    AntTestDemo

    Java eclipse下 Ant build.xml实例详解 在有eclipse集成环境下ant其实不是很重要,但有些项目需要用到,另外通过eclipse来学习和理解ant是个很好的途径,所以写他demo总结下要点,希望能够帮到大家。 一、本人测试...

    CS681

    ant -f build.xml 在壳上。 使用Lambda的简单实现Oberver和Observable HW02:要运行此构建脚本,请键入: ant -f build.xml 在壳上。 使用Stream API升序实现了4种不同的分类策略-价格,年,里程和统治等级。 ...

    Ant+JUnit+EMMA集成实例

    本实例主要展示了在myEclipse或Eclipse中如何集成Ant、Junit和EMMA技术,有三个文件夹,在导入myEclipse或Eclipse中时,要Link Source,把三个都选上。详细地讲解了ant的构建文件build.xml

    ant1.9资源

    若文件名为hello.xml时,读者还需要对命令做少许改变,改为:ant –f hello.xml sayHelloWorld、ant –buildfile hello.xml sayHelloWorld或ant –file hello.xml sayHelloWorld。 接下来开始向读者讲解本节的重点...

    Ant 1.9.1 学习笔记

    关于Ant学习的一点点小结,整理成档了,文档中已经包含了几个简单的build.xml实例,也有注释,简单明了、通俗易懂

    ant基础教程集合

    ANT基础教程集合(Ant_的最完整build.xml解释,Ant入门与进阶,ant实用实例,ant使用手册)

    ant-build_xm文件说明,对用ant构建进行了详细的说明!

    本资源是属于理论性的,主要是针对ant构建打包时 xml文档中各关键字的设定做了详细的说明,为更加灵活的设置ant构建提供了参考。但不足之处在于没有提供相应的实例。

    ant 1.70中文手册

    ant是一个构建、包装和发布Java程序的工具。本教程有ant的各个任务描述以及用实例讲解ant的build.xml的构建过程

    ANT配置文件详解

    详细的介绍了ANT配制文件build.xml的目录结构,以及各个标签的用法和作用,并结合实例讲述了利用Ant构建和部署Java工程的步骤和方法。Ant可以代替使用javac、java和jar等命令来执行java操作,从而达到轻松的构建和...

    Maven入门--概念与实例

    POM:POM(pom.xml)是Maven的核心文件,它是指示Maven如何工作的元数据文件,类似于Ant中的build.xml文件。POM文件位于每个工程的根目录中。 GroupId:groupId是一个工程的在全局中唯一的标识符,一般地,它就是...

    TestNG.rar

    ant+eclipse+testng实例代码。包含了配置testng.xml和ant的build.xml文件。导入到eclipse中可以直接运行。前提是eclipse中已经安装了testng插件和ant插件。相关的jar包需要引用进来。

    tencentyun#qcloud-documents#编译参数说明1

    编译参数说明编译类型编译参数说明默认值示例最终命令实例指定ant targets参数的执行列表ant -buildfile build.xml dist指定bu

    iuhyiuhkjh908u0980

    以下先列出初步的的ant构建文件的代码: build.xml &lt;?xml version="1.0" encoding=&quo ... by vb2005xu 2009-06-02 回复 (3) 相关讨论 持续集成简单总结 一、理论篇: 持续集成鼓励尽量短周期内项目团队的代码提交...

    Jmeter+ant+jenkins接口层性能与自动化测试

    3、ant 介绍以及作用、ant 下载及安装、ant build.xml 详解。 4、Jenkins 构建自动化平台、Jenkins 安装以及功能介绍、jenkins+ant+jmeter **整合,邮件服务通知设置。 5、本课程注重实践每一个知识点都有相对应的...

    fckeditor for jsp 的jar包

    这个是一个我修改过的fckeditor ...打开build.xml,修改property name="catalina.home"成Tomcat的安装目录。修改taskdef name="deploy"、taskdef name="list"、taskdef name="reload"、taskdef name="undeploy"如下: ...

    彻底解决fckeditor(jsp版)上传中文图片乱码问题

    彻底解决fckeditor(jsp版)上传...打开build.xml,修改property name="catalina.home"成Tomcat的安装目录。修改taskdef name="deploy"、taskdef name="list"、taskdef name="reload"、taskdef name="undeploy"如下: ...

    firing-range

    修改build.xml ,以使appengine.sdk属性指向解压缩appengine SDK的目录(也可以将其解压缩到../../ ,这是默认设置) ant runserver 然后,该应用程序将在本地运行 许可证信息 请参阅许可文件。

Global site tag (gtag.js) - Google Analytics