Apache Ant (formerly Jakarta Ant) is a declarative, XML-based build tool for Java projects. It provides a rich set of standard tasks for performing most common build operations, such as compilation with javac, building archives and running tests. Ant's functionality can be extended through custom tasks and macros.

learn more… | top users | synonyms (1)

70
votes
6answers
23k views

Why use Gradle instead of Ant or Maven?

What does another build tool targeted at Java really get me? If you use Gradle over another tool, why? (See also Why use Buildr instead of Ant or Maven)
61
votes
11answers
12k views

Maven or Ant?

Back up your claim with some actual benefits.
49
votes
3answers
49k views

Ant task to check if a file exists?

Is there an ANT Task that would execute a block only if a given file exists? I have the problem that I have a generic ant script that should do some special processing but only if a specific ...
48
votes
8answers
9k views

Why use Buildr instead of Ant or Maven?

http://buildr.apache.org/ http://ant.apache.org/ http://maven.apache.org/ What does another build tool targeted at Java really get me? Is it so hard to write a plugin using Java versus writing it ...
39
votes
5answers
12k views

ant warning: “'includeantruntime' was not set”

I receive the following warning: [javac] build.xml:9: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds What does this mean?
33
votes
11answers
9k views

Automated Unit Testing with JavaScript

I'm trying to incorporate some JavaScript unit testing into my automated build process. Currently JSUnit works well with JUnit, but it seems to be abandonware and lacks good support for AJAX, ...
27
votes
13answers
2k views

Why is no one using make for Java?

Just about every Java project that I've seen either uses Maven or Ant. They are fine tools and I think just about any project can use them. But what ever happened to make? It's used for a variety ...
23
votes
4answers
24k views

Ant: How to execute a command for each file in directory?

I want to execute a command from an Ant buildfile, for each file in a directory. I am looking for a platform-independent solution. How do I do this? Sure, I could write a script in some scripting ...
23
votes
10answers
14k views

Clean way to combine multiple jars? Preferably using Ant

I have runtime dependencies on some external jars that I would like to "rejar" into a single jar. These external dependencies are stored in an external_jars directory, and I'd like to be able to not ...
23
votes
6answers
13k views

Disable DTD warning for Ant scripts in Eclipse?

I'm using Eclipse Ganymede. Everything works fine, but I have an anal-retentive yearning for a warning-free Problems tab. Right now it (correctly) complains about my Ant scripts: "No grammar ...
21
votes
1answer
726 views

Speed of scala's ant fsc task

I have an ant file I use to compile my scala project. I'm using fsc which works wonders to avoid the 2~3 seconds my core 2 needs to just load the compiler. My problem is: the ant fsc task does incur ...
21
votes
9answers
6k views

SASS implementation for Java?

I'm looking for SASS implementation in Java (could be used with JSP/JSF). For Python I've found CleverCSS, but there is nothing for Java. Anyone heard something about this sort of tool for generating ...
21
votes
8answers
8k views

Maven or Ivy for Managing Dependencies from Ant?

I was wondering about the best way to manage projects dependencies from ant. What are the pros and cons of the Maven Ant task and of Ivy?
21
votes
3answers
10k views

Why am I getting a ClassCastException when generating javadocs?

I'm using ant to generate javadocs, but get this exception over and over - why? I'm using JDK version 1.6.0_06. [javadoc] java.lang.ClassCastException: com.sun.tools.javadoc.ClassDocImpl cannot be ...
20
votes
1answer
225 views

Promoting several modules (integration -> milestone) in ivy

Ivy is great for managing dependencies, but it isn't meant to handle the entire software lifecycle across many modules. That said, it does have several features that seem to support it (such as the ...
20
votes
9answers
13k views

Differences between Ant and Maven

Could someone tell me the differences between Ant and Maven? I have never used either. I understand that they are used to automate the building of Java projects, but I do not know where to start from. ...
18
votes
1answer
2k views

Javac: Treat warnings as errors

I have an Ant file that compiles my program. I want the javac task to fail if any warning was reported by the compiler. Any clue on how to do that?
18
votes
3answers
12k views

How do I generate Emma code coverage reports using Ant?

How do I setup an Ant task to generate Emma code coverage reports?
17
votes
4answers
7k views

Can someone explain the ivy.xml dependency's conf attribute?

I can't find any thorough explanation of the ivy dependency tag's conf attribute: <dependency org="hibernate" name="hibernate" rev="3.1.3" conf="runtime, standalone -> runtime(*)"/> See ...
16
votes
3answers
3k views

ant to maven - multiple build targets

I have an ant build that is currently being converted to maven. However, the ant build has 2 build targets - one that builds the entire app, and one that builds a jar from some of those files (only a ...
16
votes
1answer
7k views

How can I print a fileset to a file, one file name per line?

I have a populated fileset and I need to print the matching filenames into a text file. I tried this: <fileset id="myfileset" dir="../sounds"> <include name="*.wav" /> ...
16
votes
7answers
1k views

How much of the Web build process do you/should you automate?

How much of the Web build process do you/should you automate? And what is your system of choice? Off the top of my head I would say that for a real one-step web 'build' the following steps would ...
15
votes
4answers
4k views

Create cross platform Java SWT Application

I have written a Java GUI using SWT. I package the application using an ANT script (fragment below). <jar destfile="./build/jars/swtgui.jar" filesetmanifest="mergewithoutmain"> ...
15
votes
6answers
6k views

Build numbers: major.minor.revision

How would you write a build.xml file, using neither custom code nor external dependencies (such as a shell script), that: Generates a build number of the form major.minor.revision (e.g., 01.02.34). ...
15
votes
16answers
1k views

How do you speed up java unit tests?

Currently our project has over 3000 unit tests, and "ant testAll" takes well over 20 minutes. besides getting better hardware, are there ways to speed things up?
15
votes
4answers
11k views

ant filtering - fail if property not set

I've got a ant build.xml that uses the <copy> task to copy a variety of xml files. It uses filtering to merge in properties from a build.properties file. Each environment (dev, stage, prod) ...
14
votes
4answers
6k views

Best way to integrate Git with Ant?

I am looking for the best way to integrate Git with Ant. Is there a widely used Ant task for Git? Does anyone have any experience using Git through Ant (e.g. dedicated task, exec call, etc)?
14
votes
3answers
18k views

How to set an Ant property only if it is unset

I can't figure out how to set an Ant property on the condition that it has not been set (i.e it is not defined in the properties file and should automatically default). So far, I only have the ...
14
votes
3answers
21k views

Getting Ant <javac> to recognise a classpath

I have an Apache Ant build file with a <javac> command that requires four specific JARs to be on the build classpath. I've tried to do this: <project basedir=".." default="build_to_jar" ...
14
votes
3answers
9k views

Ant build scripts, antcall, dependencies, etc

I have a build script and as part of that script it copies a jar file to a directory, for ease lets call it the utils jar. the utils jar is built by another build script sitting in another directory. ...
13
votes
1answer
6k views

Where are classpath, path and pathelement documented in Ant version 1.8.0?

I'm looking over the documentation that comes with Apache Ant version 1.8.0 and can't find where classpath, path and pathelement are documented. I've found a page that describes path like structures ...
13
votes
5answers
4k views

ant+cpptasks vs. scons vs. make

I'm looking into scons and I just want to make sure I know what the alternatives are, before I invest a chunk of brain cells into something completely different. I've been using GNU make in the past ...
13
votes
6answers
4k views

Is there a successor to Ant and Maven?

I ask out of ignorance. It's been over two years since I heard James Duncan Davidson say that Ant needed a successor, something more like a scripting language. It seemed that Maven 1/Jelly tried to ...
13
votes
6answers
8k views

Can I make the Ant copy task OS-specific?

I have an Ant script that performs a copy operation using the 'copy' task. It was written for Windows, and has a hardcoded C:\ path as the 'todir' argument. I see the 'exec' task has an OS argument, ...
12
votes
3answers
433 views

No key.store and key.alias properties found in build.properties

I am using ant-release to do a 1-step build of my Android app. My build.properties looks like this: application.package=xxxxx key.store=sonr key.alias=sonr labs key.store.password=xxxx ...
12
votes
6answers
777 views

Multiple Android Application Package .apk files from single source code

I would like an Android build system procedure, command line or Eclipse, to generate several .apk files from a single source codebase. Some common reasons for this - having specific versions for ...
12
votes
8answers
7k views

“Forked Java VM exited abnormally” error from junit tests

I have a java junit test that passes when run alone on a development machine. We also have a hudson job which runs all the tests, invoked via ant, on a Mac OS X 10.4 node with Java 1.5. The test was ...
12
votes
4answers
7k views

How to copy the directory using Ant

I have used copydir to copy the directory. Actually my directory contains some sub-directories, and some of those contain files and others contain sub-directories. How do I copy everything?
12
votes
2answers
13k views

Do I have any way to check the existence of a directory in ANT? (Not a file)

Any idea on checking the existence of a folder using ANT? We can check the existence of a file but can we do the same for a folder as well?
12
votes
3answers
9k views

define ant property from environment with default value

I would like my build script to act properly for release and development environments. For this I would like to define a property in ant, call it (e.g.) fileTargetName fileTargetName will get it's ...
12
votes
9answers
3k views

Is Ant still the best choice for a Java build tool?

From my small amount of experience, I've only used Ant as a build tool. Are there any other projects which are better, and why?
12
votes
5answers
7k views

Is there a way to generalize an Apache ANT target?

We have an Apache ANT script to build our application, then check in the resulting JAR file into version control (VSS in this case). However, now we have a change that requires us to build 2 JAR ...
11
votes
5answers
254 views

compile jdk via ant

I want to compile jdk files in order to include debug infromation. I'd like to use ant, because it's included in my NetBeans environement, so i've done the following: unzipped /src.zip in a tmp ...
11
votes
5answers
11k views

Can't build and run an android test project created using “ant create test-project” when tested project has jars in libs directory

I have a module that builds an app called MyApp. I have another that builds some testcases for that app, called MyAppTests. They both build their own APKs, and they both work fine from within my ...
11
votes
5answers
926 views

How do you “refactor” ant build.xml files?

I'm working on a large C++ system built with ant+cpptasks. It works well enough, but the build.xml file is getting out of hand, due to standard operating procedure for adding a new library or ...
11
votes
4answers
4k views

running junits and cobertura with maven

In our project, we run both junits and cobertura using maven. The problem I am facing is that, junit test cases are running twice, once before the jar creation process and then once again for ...
11
votes
4answers
10k views

Compile Flex Builder project from command line

Is there an easy way to build projects created in FlexBuilder via the command line? I'm beginning to work on adding a couple Flex components to the project I have at work. Currently the rest of the ...
11
votes
6answers
7k views

How to load an optional task into ant without -lib or global installation?

I want to use the FTP task in ant, and I have found the appropriate jar files and got everything working fine. I have put the jar files in a "libs" directory alongside the other files used in the ...
11
votes
3answers
6k views

How does ivy:publish work?

I'm completely at loss how the ant task ivy:publish is supposed to work. I would expect that I do my normal build, which creates a bunch of jar files, then I would push those jars to the (local) ...
10
votes
1answer
404 views

SASS to CSS via an ANT task + directory creation

I recently started playing with SASS [http://sass-lang.com/] in a Java-based project and wanted to create an Ant task that: for each .scss file + subdirectories containing .scss files in a top-level ...

1 2 3 4 5 84