Sie sind auf Seite 1von 8

61

Free tutorial, donate


to support

by Lars Vogel
Apache Ant - tutorial
Lars Vogel
Version 2.5
Copyright 2008, 2009, 2010, 2011, 2012, 2013 Lars Vogel
09.04.2013
Revision History
Revision 0.1 30.11.2008 Lars
Vogel
Created
Revision 0.2 - 2.5 12.01.2009 - 09.04.2013 Lars
Vogel
bugfixes and enhancements
Apache Ant Tutorial
This tutorial describes the usage of Ant as a build tool to compile Java code, pack this code into an
executable jar and how to create Javadoc. The usage of Ant is demonstrated within Eclipse and from
the command line. This tutorial is based on Apache Ant 1.8.x.
Table of Contents
1. Build tools
2. Apache Ant Overview
2.1. What is Apache Ant?
2.2. Configuring Apache Ant
3. Installation
3.1. Prerequisites
3.2. Installation of Java
3.3. Linux
3.4. Windows
4. Tutorial: Using Apache Ant
4.1. Using Ant for Java development
4.2. Create Java project
4.3. Create build.xml
4.4. Run your Ant build from Eclipse
4.5. Run your Ant build from the command line
5. Apache Ant classpath
5.1. Setting the Ant classpath
5.2. Print
6. Running JUnit Tests via Ant
7. Useful Ant tasks
7.1. fail
8. Eclipse Ant Editor
9. Ant tips
9.1. Converting Paths
9.2. Regular expressions
10. Thank you
11. Questions and Discussion
12. Links and Literature
12.1. Source Code
12.2. General
1. Build tools
A build tool is used to automate repetitive tasks. This can be for example compiling source code,
running software tests and creating files and documentation for the software deployment.
Build tools typically run without a graphical user interface (headless) directly from the command line.
vogella.com Tutorials Training Services Publications Connect
Training
Books
converted by Web2PDFConvert.com
Popular build tools in the Java space are Apache Ant, Maven and Gradle.
2. Apache Ant Overview
2.1. What is Apache Ant?
Apache Ant (Ant) is a general purpose build tool. Ant is an abbreviation for Another Neat Tool.
Ant is primarily used for building and deploying Java projects but can be used for every possible
repetitive tasks, e.g. generating documentation.
2.2. Configuring Apache Ant
A Java build process typically includes:
the compilation of the Java source code into Java bytecode
creation of the .jar file for the distribution of the code
creation of the Javadoc documentation
Ant uses an xml file for its configuration. The default file name is build.xml. Ant builds are based on
three blocks: tasks, targets and extension points .
A task is a unit of work which should be performed and are small, atomic steps, for example compile
source code or create Javadoc. Tasks can be grouped into targets.
A target can be directly invoked via Ant. Targets can specify their dependencies. Ant will automatically
execute dependent targets.
For example if target A depends on B, than Ant will first perform B and then A.
In your build.xml file you can specify the default target. Ant will execute this target, if no explicit target
is specified.
3. Installation
3.1. Prerequisites
Ant requires the installation of the Java Development Kit (JDK).
3.2. Installation of Java
Java might already be installed on your machine. You can test this by opening a console (if you are
using Windows: Win+R, enter cmd and press Enter) and by typing in the following command:
java -version
If Java is correctly installed, you should see some information about your Java installation. If the
command line returns the information that the program could not be found, you have to install Java.
The central website for installing Java is the following URL:
http://java.com
If you have problems installing Java on your system, search via Google for How to install JDK on
YOUR_OS . This should result in helpful links. Replace YOUR_OS with your operating system, e.g. Windows,
Ubuntu, Mac OS X, etc.
3.3. Linux
On Ubuntu or Debian use the apt-get install ant command to install Apache Ant. For other
distributions please check the documentation of your vendor.
3.4. Windows
Download Apache Ant from http://ant.apache.org/.
Extract the zip file into a directory structure of your choice. Set the ANT_HOME environment variable to
this location and include the ANT_HOME/bin directory in your path.
Make sure that also the JAVA_HOME environment variable is set to the JDK. This is required for
running Ant.
Check your installation by opening a command line and typing ant -version into the commend line.
converted by Web2PDFConvert.com
The system should find the command ant and show the version number of your installed Ant version.
4. Tutorial: Using Apache Ant
4.1. Using Ant for Java development
The following describes how you compile Java classes, create an executable JAR file and create
Javadoc for your project with Apache Ant. The following example assumes that your are using the
Eclipse IDE to manage your Java project and your Ant build.
4.2. Create Java project
Create a Java project called de.vogella.build.ant.first in Eclipses. Create a package called math and the
following class.
package math;
public class MyMath {
public int multi(int number1, int number2) {
return number1 * number2;
}
}
Create the test package and the following class.
package test;
import math.MyMath;
public class Main {
public static void main(String[] args) {
MyMath math = new MyMath();
System.out.println("Result is: " + math.multi(5, 10));
}
}
4.3. Create build.xml
Create a new File through the File New File menu and create the build.xml file. Implement the
following code to this file.
<?xml version="1.0"?>
<project name="Ant-Test" default="main" basedir=".">
<!-- Sets variables which can later be used. -->
<!-- The value of a property is accessed via ${} -->
<property name="src.dir" location="src" />
<property name="build.dir" location="bin" />
<property name="dist.dir" location="dist" />
<property name="docs.dir" location="docs" />
<!-- Deletes the existing build, docs and dist directory-->
<target name="clean">
<delete dir="${build.dir}" />
<delete dir="${docs.dir}" />
<delete dir="${dist.dir}" />
</target>
<!-- Creates the build, docs and dist directory-->
<target name="makedir">
<mkdir dir="${build.dir}" />
<mkdir dir="${docs.dir}" />
<mkdir dir="${dist.dir}" />
</target>
<!-- Compiles the java code (including the usage of library for JUnit -->
<target name="compile" depends="clean, makedir">
<javac srcdir="${src.dir}" destdir="${build.dir}">
</javac>
</target>
<!-- Creates Javadoc -->
<target name="docs" depends="compile">
<javadoc packagenames="src" sourcepath="${src.dir}" destdir="${docs.dir}">
<!-- Define which files / directory should get included, we include all -->
<fileset dir="${src.dir}">
<include name="**" />
</fileset>
</javadoc>
</target>
<!--Creates the deployable jar file -->
<target name="jar" depends="compile">
<jar destfile="${dist.dir}\de.vogella.build.test.ant.jar" basedir="${build.dir}">
converted by Web2PDFConvert.com
<manifest>
<attribute name="Main-Class" value="test.Main" />
</manifest>
</jar>
</target>
<target name="main" depends="compile, jar, docs">
<description>Main target</description>
</target>
</project>
The code is documented, you should be able to determine the purpose of the different ant tasks via the
documentation in the coding.
4.4. Run your Ant build from Eclipse
Run the build.xml file as an Ant Build in Eclipse.
After this process your data structure should look like this:
4.5. Run your Ant build from the command line
Open a command line and switch to your project directory. Type in the following commands.
converted by Web2PDFConvert.com
# run the build
ant -f build.xml
# build.xml is default you can also use
ant
The build should finish successfully and generate the build artifacts.
5. Apache Ant classpath
5.1. Setting the Ant classpath
Ant allows to create classpath containers and use them in tasks. The following build.xml from a
project called de.vogella.build.ant.classpath demonstrates this.
<?xml version="1.0"?>
<project name="Ant-Test" default="Main" basedir=".">
<!-- Sets variables which can later be used. -->
<!-- The value of a property is accessed via ${} -->
<property name="src.dir" location="src" />
<property name="lib.dir" location="lib" />
<property name="build.dir" location="bin" />
<!--
Create a classpath container which can be later used in the ant task
-->
<path id="build.classpath">
<fileset dir="${lib.dir}">
<include name="**/*.jar" />
</fileset>
</path>
<!-- Deletes the existing build directory-->
<target name="clean">
<delete dir="${build.dir}" />
</target>
<!-- Creates the build directory-->
<target name="makedir">
<mkdir dir="${build.dir}" />
</target>
<!-- Compiles the java code -->
<target name="compile" depends="clean, makedir">
<javac srcdir="${src.dir}" destdir="${build.dir}" classpathref="build.classpath" />
</target>
<target name="Main" depends="compile">
<description>Main target</description>
</target>
</project>
5.2. Print
You can use the following statements to write the full classpath to the console. You can use this to
easily verify if the classpath is correct.
<!-- Write the classpath to the console. Helpful for debugging -->
<!-- Create one line per classpath element-->
<pathconvert pathsep="${line.separator}" property="echo.classpath" refid="junit.class.path">
</pathconvert>
<!-- Write the result to the console -->
<echo message="The following classpath is associated with junit.class.path " />
<echo message="${echo.classpath}" />
6. Running JUnit Tests via Ant
Ant allows to run JUnit tests. Ant defines junit task. You only need to include the junit.jar and the
compiled classes into the classpath for Ant and then you can run JUnit tests. See JUnit Tutorial for an
introduction into JUnit.
The following is a JUnit test for the previous example.
package test;
import math.MyMath;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class MyMathTest {
@Test
public void testMulti() {
MyMath math = new MyMath();
converted by Web2PDFConvert.com
assertEquals(50, math.multi(5, 10));
}
}
You can run this JUnit unit test via the following build.xml. This example assumes that the JUnit jar
"junit.jar" is in folder "lib".
<?xml version="1.0"?>
<project name="Ant-Test" default="main" basedir=".">
<!-- Sets variables which can later be used. -->
<!-- The value of a property is accessed via ${} -->
<property name="src.dir" location="src" />

<property name="build.dir" location="bin" />
<!-- Variables used for JUnit testin -->
<property name="test.dir" location="src" />
<property name="test.report.dir" location="testreport" />
<!-- Define the classpath which includes the junit.jar and the classes after compiling-->
<path id="junit.class.path">
<pathelement location="lib/junit.jar" />
<pathelement location="${build.dir}" />
</path>
<!-- Deletes the existing build, docs and dist directory-->
<target name="clean">
<delete dir="${build.dir}" />
<delete dir="${test.report.dir}" />
</target>
<!-- Creates the build, docs and dist directory-->
<target name="makedir">
<mkdir dir="${build.dir}" />
<mkdir dir="${test.report.dir}" />
</target>
<!-- Compiles the java code (including the usage of library for JUnit -->
<target name="compile" depends="clean, makedir">
<javac srcdir="${src.dir}" destdir="${build.dir}">
<classpath refid="junit.class.path" />
</javac>
</target>
<!-- Run the JUnit Tests -->
<!-- Output is XML, could also be plain-->
<target name="junit" depends="compile">
<junit printsummary="on" fork="true" haltonfailure="yes">
<classpath refid="junit.class.path" />
<formatter type="xml" />
<batchtest todir="${test.report.dir}">
<fileset dir="${src.dir}">
<include name="**/*Test*.java" />
</fileset>
</batchtest>
</junit>
</target>
<target name="main" depends="compile, junit">
<description>Main target</description>
</target>
</project>
7. Useful Ant tasks
7.1. fail
Ant provides the fail task which allows to fail the build if a condition is not met. For example the
following task would check for the existing of a file and if this file is present the build would fail.
<fail message="PDF file was not created.">
<condition>
<not>
<available file="${pdf.dir}/path/book.pdf" />
</not>
</condition>
</fail>
Or you can check for the number of files generated.
<fail message="Files are missing.">
<condition>
<not>
<resourcecount count="2">
<fileset id="fs" dir="." includes="one.txt,two.txt"/>
</resourcecount>
</not>
</condition>
</fail>
converted by Web2PDFConvert.com
8. Eclipse Ant Editor
Eclipse has an ant editor which make the editing of ant file very easy by providing syntax checking of
the build file. Eclipse has also a ant view. In this view you execute ant files via double-clicking on the
target.
Tip
By default Eclipse uses the ant version which ships with Eclipse. Via the
preference Ant -> Runtime -> Ant Home you can configure the version of
Ant Eclipse should be using.
9. Ant tips
9.1. Converting Paths
Apache Ant allows to convert relative paths to absolute paths. The following example demonstrates
that.
<!-- Location of a configuration -->
<property name="my.config" value="../my-config.xml"/>
<makeurl file="${my.config}" property="my.config.url"/>
This property can later be used for example as a parameter.
<param name="highlight.xslthl.config" expression="${my.config.url}"/>
9.2. Regular expressions
Ant can be used to replace text based on regular expressions. The following Ant Target replaces tabs
with double spaces.
<target name="regular-expressions">
<!-- Replace tabs with two spaces -->
<replaceregexp flags="gs">
<regexp pattern="(\t)" />
<substitution expression=" " />
<fileset dir="${outputtmp.dir}/">
<include name="**/*" />
</fileset>
</replaceregexp>
</target>
10. Thank you
Please help me to support this article:

converted by Web2PDFConvert.com
11. Questions and Discussion
Before posting questions, please see the vogella FAQ. If you have questions or find an error in this
article please use the www.vogella.com Google Group. I have created a short list how to create
good questions which might also help you.
12. Links and Literature
12.1. Source Code
http://www.vogella.com/code/codejava.html Source Code of Examples
12.2. General
http://ant.apache.org/ Apache Ant Homepage http://subclipse.tigris.org/svnant.html
Subversion Ant Task
converted by Web2PDFConvert.com

Das könnte Ihnen auch gefallen