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)

18
votes
4answers
17k 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) ...
10
votes
5answers
2k views

BlackBerry - Ant build script for more complex apps

I am having trouble creating an Ant build script for our production apps. I have been reading a lot about Ant, and bb-ant-tools. I have followed many stackoverflow questions on Ant & BB ...
7
votes
1answer
3k views

Ant produces jsfl with backslashes instead of slashes

I'm using Ant with FDT 3 and I have Ant creating a jsfl to compile fla's. When I use the built in '${basedir}' property in Ant it gives me the path with backslashes(\) in it because I'm on Windows. ...
7
votes
5answers
5k views

How do I exclude a specific method/constructor from the results of the javadoc Ant task?

I'm using javadocs generated by the javadoc Ant task to document a web service, and I want to exclude some constructors from the output. How do I do that?
6
votes
8answers
9k views

Does JUnit4 testclasses require a public no arg constructor?

I have a test class, written in JUnit4 syntax, that can be run in eclipse with the "run as junit test" option without failing. When I run the same test via an ant target I get this error: ...
3
votes
2answers
2k views

can I turn off the .ivy cache all together?

Is there a way to tell ant/ivy to not use a local $HOME/.ivy2 cache?
3
votes
1answer
639 views

Inherit javadoc, without generating docs for inherited source

I would like class B to inherit the Javadoc from an interface that it implements, interface A. I have included the source for interface A in my Javadoc command, and class B correctly inherits the ...
3
votes
1answer
917 views

Getting directory listing from SVN for use in ANT dropdown

I've done some Googling on this but I can't seem to find anything along the lines of what I'm needing. I'm using ANTForms for the GUI on our deployment. Developers can choose the build from the ...
8
votes
3answers
1k views

BlackBerry: create COD from JAR source file in Ant script

How do I use Ant (bb-ant-tools) to compile a JAR file into a COD? i.e. with no other source files Reason Ultimately, I need a script that is going to run Jar Jar Links (jarjar) during the build, ...
6
votes
1answer
5k views

How to specify lib folder for JARs when using Android-generated ant build file?

Im using an ant build file that has been generated by android. Our Android application requires a JAR file that lives inside the lib folder of our project, so I need to adjust the classpath that ant ...
6
votes
4answers
13k views

Interpreting newlines with XSLT xsl:text?

I have an XSL stylesheet with content in an xsl:text node like this: <xsl:text> foo bar baz </xsl:text> The stylesheet itself is a text file with "unix-style" newline line terminators. ...
5
votes
4answers
3k views

NoClassDefFoundError when running Instrumentation test with ant

(This is an Android SDK tools v17 problem. Expect a fix in v18) I have a test target project A, and a tester project B. Project A has FlurryAgent.jar in its libs folder. Project B has ...
5
votes
3answers
17k views

Ant exec - cannot run program 'start' CreateProcess error=2

I can't run the windows 'start' using ant exec. Ant version 1.7.1. Here is sample build.xml to recreate the problem <project name="test" basedir="." default="test-target"> <target ...
3
votes
3answers
3k views

Cannot stop ant from generating compiler warnings

I call javac from my ant script like this: <javac srcdir="src" destdir="build/classes" source="1.6" target="1.6" debug="true" encoding="Cp1252" nowarn="true"> But it still throws ...
2
votes
1answer
189 views

How to build an OpenLaszlo DHTML application using Apache Ant

I've read about OpenLaszlo's lzdeploy tool, but there seems to be only little documentation available. It should be possible to build an OpenLaszlo DHTML application using Apache Ant (e.g. as part of ...
1
vote
2answers
3k views

Running jenkins gives “package org.junit does not exist”

Can any one please help me with that error? build-project: [echo] AntProject: /root/.jenkins/jobs/Ant/workspace/build.xml [javac] Compiling 2 source files to ...
1
vote
5answers
13k views

Eclipse: export to .jar AND include resource files (ANT)

Our project in eclipse approximately shows the following folders: application - src - JRE System Library [1.6] - Referenced Libraries - lib - rsc In our project, we would like ...
0
votes
2answers
1k views

How check for a condition in ant and depending on its value print a message?

This is a small piece of code please give a look at it then follow the description.... <condition property="${param1}"> <or> <istrue ...
0
votes
4answers
3k views

junitreport ant task giving java.lang.OutOfMemoryError: Java heap space

I'm running junit tests from an ant script. The tests run successfully so ant moves on to the the junitreport task to create the html report. This task is failing with a java.lang.OutOfMemoryError: ...
46
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, ...
62
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 ...
26
votes
3answers
10k 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: ...
18
votes
5answers
5k views

How to lookup the latest git commit hash from an ant build script

How can I lookup the latest git commit hash from an ant build script? I am currently working on a new open source project which I store on github. I would like to extend my existing ANT build file to ...
21
votes
3answers
10k views

How to convert a Eclipse android project to use ant for build

I have a android project in eclipse I would like to convert to be built with ANT instead. How can I achieve this? I have tried exporting an ant build file but I'm pretty sure that's not going to work ...
20
votes
4answers
23k views

Ant unable to find javac, JAVA_HOME won't set on Ubuntu

I have an Android Project called Hello on my Ubuntu 10.04 i386 Server (headless). It contains all things an Android project folder should have. I first build the project in bash while in the Project ...
25
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" /> ...
19
votes
5answers
6k 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 ...
16
votes
3answers
4k views

How to include version string in the filename when building Android apk with ant?

Normally we build android package in debug mode with the command ant debug and got the apk filename AppName-debug.apk. Is there any way to generate the apk file in the format of ...
10
votes
3answers
7k views

How to execute an Ant task only when source files have been modified?

There must be an easy way to do this. I build a Flex app using ant that depends on a SWC library, which works fine except that it rebuilds the library whether it needs to or not. How do I tell ant ...
43
votes
7answers
19k 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 ...
10
votes
4answers
4k views

Android - use ant to create build configurations that change configuration values

What I want is a way to have settings that are dependent on build configuration. To give a specific example, my android application connects to a web service. In development, I want the service url ...
10
votes
4answers
10k views

Ivy: how do I remove transitive dependencies?

I'm using Ivy to manage the dependencies on my project. So far, I've specified a dependency on Hibernate and servlet-api. However, the hibernate jar itself has a lot of dependencies that aren't ...
20
votes
4answers
10k 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 ...
20
votes
3answers
17k 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. ...
18
votes
4answers
61k views

How do I check out an SVN project into Eclipse as a Java project?

I was trying to check out a project from SVN using Eclipse. I tried using "Checkout As" to make it into a "Java project from existing Ant script", but the project wizard requires the file to have ...
10
votes
7answers
15k views

How to determine build architecture (32bit / 64bit) with ant?

We have inherited an ant build file but now need to deploy to both 32bit and 64bit systems. The non-Java bits are done with GNUMakefiles where we just call "uname" to get the info. Is there a ...
20
votes
12answers
13k 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 ...
16
votes
2answers
38k views

Maven vs. Ant [duplicate]

Possible Duplicate: Maven or Ant? If there is Maven does it at all make sense to learn and use Ant?
7
votes
3answers
3k views

Documentation for aapt element in Ant script

I'm working on some Ant scripts for an Android build system and have come across an element to call aapt. I have seen lots of examples with exec executable="${aapt}" but the ones that come out of ...
7
votes
3answers
10k views

ANT build for Android Proguard obfuscation

Can anyone share with sample/simple obfuscation ANT task for Android? Provided that I do have complete APK and I need just pass *class hru Proguard and then prepare *.dex to build APK
6
votes
4answers
9k views

How do I add time-stamp information to Maven artifacts?

I am upgrading a large build-system to use Maven2 instead of Ant, and we have two related requirements that I'm stuck on: We need to generate a time-stamped artifact, so a part of the package phase ...
5
votes
4answers
9k views

Ant failed to build

I have build a Java appliction which is using ant.jar (ant 1.8.2) classes for building android application from it's build.xml file with release as target. My Android project has been built by using ...
13
votes
2answers
3k views

Is it possible to have Ant print out the classpath for a particular target? If so, how?

I'm trying to get a target to build that has quite a long list of <pathelement location="${xxx}"/> and <path refid="foo.class.path"/> elements in its <path id="bar.class.path"> ...
13
votes
5answers
7k views

Ant run command with pipes

I must to implement command : java -jar test.jar page.xml | mysql -u user -p base in ant. So i Have tried with this task: <java jar="test.jar" fork="true"> <arg line="page.xml | mysql -u ...
12
votes
9answers
15k views

How do you create a MANIFEST.MF that's available when you're testing and running from a jar in production?

I've spent far too much time trying to figure this out. This should be the simplest thing and everyone who distributes Java applications in jars must have to deal with it. I just want to know the ...
10
votes
6answers
23k views

How to checkout from SVN with an ANT task?

I'm interested in any way that I can create an Ant task to checkout files from SubVersion. I "just" want to do the checkout from the command line. I've been using Eclipse with Ant and SubVersion for a ...
9
votes
7answers
14k views

How to over-write the property in Ant?

Is there a way to re-assign the value for the Ant property task? Or is there another task available for that purpose?
8
votes
2answers
13k views

Cannot find javahl, svnkit nor command line svn client

I've done numerous svn / ant set-ups and but this time cann't figure out what's wrong. Using Linux, svn 1.6.6 ant 1.8.2 svnant 1.3.1 I've copied the svnant jar files into $ANT_HOME/lib ...
16
votes
4answers
36k views

Ant error when trying to build file, can't find tools.jar?

When I run ant it says: Unable to locate tools.jar. Expected to find it in C:\Program Files\Java\jre6\lib\tools.jar Buildfile: build.xml does not exist! Build failed What package can I use to ...
11
votes
2answers
8k views

How can I iterate over properties from a file?

All my projects and their versions are defined in a properties file like this: ProjectNameA=0.0.1 ProjectNameB=1.4.2 I'd like to iterate over all the projects, and use their names and versions in ...

1 2 3 4 5 18