Tagged Questions

2
votes
3answers
118 views

Custom tasks in Ant: addTYPE(TYPE x) vs add(TYPE x) (latter doesn’t work)

I'm writing a custom Ant task that needs to accept a custom nested type. According to the Ant manual, I should be able to use addConfigured(TYPE x) rather than addConfiguredTYPE(TYPE x). Also, …
2
votes
1answer
205 views

How Ant can get a value read from a file into a property value?

The file looks like: a1,b1 a2,b2 ... I know the value "a2". How to get the value "b2" into a property value. I know how to select line which contains "a2" by: <linecontains> <contains …
2
votes
2answers
163 views

Best Practice For Creating Stub Files With Ant

Hi all, I'm trying to create myself a little build script to build a project for me - creating the desired directories, downloading any needed jars via Ivy/Maven and creating some stub files. The …
2
votes
5answers
544 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 …
1
vote
3answers
256 views

Apache Ant Build command “Access Denied”

Hey! I am trying to get ant installed and actually already did following this instructions however, I get this error: Buildfile: build.xml does not exist! Build failed which it says there I might …
1
vote
1answer
150 views

Javadoc only one class in a package using Ant

I am using apache ant to generate javadoc for my project. I have a number of classes in one of my packages and I only want to show one. How do I do this? Here is my current code. <javadoc …
1
vote
2answers
697 views

Deploying a webapp remotely to Tomcat using Ant on OSX

I wish to use the Tomcat install/deploy tasks from catalina-ant.jar to deploy a webapp to a remote app server. After installing Ant using the instructions found here, my ant folder is configured as: …
0
votes
2answers
209 views

ANT How to delete ONLY empty directories recursively

Does anyone know how to recursively delete "empty" directories with ANT (empty includes directories that only contain ".svn" etc). I know ant allows you to "includeEmptyDirs=true" but I want it to …