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

learn more… | top users | synonyms (1)

201
votes
9answers
60k views

Why use Gradle instead of Ant or Maven? [closed]

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)
154
votes
5answers
57k 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?
121
votes
12answers
51k views

NoClassDefFoundError - Eclipse and Android

I'm having a problem trying to run an Android app which, up until adding a second external library to its build path, was working fine. Since having added the scoreninja jar, I now get a ...
90
votes
12answers
23k views

Maven or Ant? [closed]

Back up your claim with some actual benefits.
78
votes
4answers
82k views

Ant task to run an Ant target only 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 ...
61
votes
8answers
14k views

Why use Buildr instead of Ant or Maven? [closed]

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 ...
58
votes
9answers
35k 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. ...
55
votes
15answers
6k 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 ...
54
votes
12answers
14k 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 ...
50
votes
5answers
48k 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 ...
48
votes
2answers
10k views

How do i see the available targets

I've a long build.properties file made by someone else. I want to see available targets without going through the file. Does ant have a command for this? Like 'ant show-targets' so that it will list ...
45
votes
12answers
15k 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, ...
41
votes
6answers
18k 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 ...
38
votes
11answers
28k 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 ...
37
votes
3answers
42k views

Any way to generate ant build.xml file automatically from Eclipse?

From Eclipse, I found I can easily export an Ant build file for my project. It provides references to 3rd party libraries and some base targets. I'm using it from my global build file. The only thing ...
35
votes
2answers
15k 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 ...
33
votes
8answers
13k 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?
33
votes
6answers
28k views

Replacing characters in Ant property

Is there a simple way of taking the value of a property and then copy it to another property with certain characters replaced? Say propA=This is a value. I want to replace all the spaces in it into ...
33
votes
2answers
37k 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 ...
32
votes
6answers
19k views

How to copy the directory using Ant

I have used copydir to copy a directory tree but it is deprecated. My directory contains some sub-directories, and some of those contain files and others contain more sub-directories. How can I copy ...
27
votes
3answers
14k 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 ...
27
votes
4answers
5k 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 ...
26
votes
9answers
32k views

Ant is using wrong java version

I'm using Ant 1.7.0 and installed java 1.6 which is in JAVA_HOME. I want to build a project using java 1.5, so I've exported JAVA_HOME to be my java 1.5 directory. java -version says "1.5". When ...
26
votes
3answers
9k views

Problem building Android sample project

I believe I've followed the instructions in the Android SDK, and I'm now trying to build the sample LunarLander (random one picked) $ cd samples/android-11/LunarLander $ ant debug Buildfile: ...
26
votes
4answers
18k views

Creating a bundle jar with ant

I'm using Ant to build some Java projects. In some, I've got a lib/ directory, which contains external dependencies, in the form on JAR files. During the build, I create a bundled jar, that contains ...
26
votes
6answers
14k 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)?
26
votes
8answers
5k 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 ...
25
votes
6answers
21k views

JUnit: how to avoid “no runnable methods” in test utils classes

I have switched to JUnit4.4 from JUnit3.8. I run my tests using ant, all my tests run successfully but test utility classes fail with "No runnable methods" error. The pattern I am using is to include ...
25
votes
2answers
27k 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?
25
votes
5answers
13k views

good ivy tutorial for local repository?

Can anyone point me at a good tutorial for making & using a local repository with Ivy? (Please don't point me at the Ivy docs, the tutorials are rather confusing) I need to make a local ...
24
votes
3answers
41k 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" ...
24
votes
1answer
16k 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" /> ...
24
votes
1answer
4k 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?
24
votes
7answers
2k 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 ...
23
votes
3answers
7k 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 ...
23
votes
1answer
4k views

How do I convert a relative path in Ant to an absolute path?

I would like to convert a relative path to an absolute path. How is that done?
23
votes
6answers
12k 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). ...
22
votes
8answers
21k 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 ...
22
votes
10answers
12k views

Ant, Tomcat Build Error: java.lang.NoClassDefFoundError: org/apache/tomcat/util/buf/B2CConverter

Tomcat Version: 7.0.20 I am attempting to work my way through the following Spring MVC tutorial: http://static.springsource.org/docs/Spring-MVC-step-by-step/part1.html In this tutorial, an ant build ...
22
votes
5answers
25k views

Use Ant for running program with command line arguments

My program getting command line arguments. How can I pass it when I use Ant?
22
votes
4answers
10k views

Eclipse on Mac, getting “Specified VM install not found” error when trying to build

When I try and do an Ant build on my mac (Snow Leopard, Eclipse 3.6 - Helios) I get an error dialog that says "Problem Occured" 'Launching projectName build.xml' has encountered a problem. ...
22
votes
4answers
2k views

Maven vs Ant for automatic builds in Android applications

I'm evaluating whether to use Ant or Maven to automate my build process for Android development. I've been trying to read online to make an informed decision, but haven't found many specifics that ...
22
votes
1answer
17k 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 ...
22
votes
1answer
381 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 ...
21
votes
6answers
8k 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 ...
21
votes
5answers
10k 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"> ...
21
votes
1answer
912 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 ...
20
votes
3answers
4k views

How do I use Nant/Ant naming patterns?

I have to admit that I always forgot the syntactical intracacies of the naming patterns for Nant (eg. those used in filesets). The double asterisk/single asterisk stuff seems to be very forgettable in ...
20
votes
5answers
8k views

Android signing with ANT

I'm trying to build an Android application on release mode for distribution via ANT. My problem is at the signing process. I've created a keystore and alias via Eclipse using the Export Android ...
20
votes
4answers
9k views

ant task to remove files from a jar

How to write an ant task that removes files from a previously compiled JAR? Let's say the files in my JAR are: aaa/bbb/ccc/Class1 aaa/bbb/ccc/Class2 aaa/bbb/def/Class3 aaa/bbb/def/Class4 ... and I ...

1 2 3 4 5 150