Tagged Questions

5
votes
3answers
11k views

Why cannot Ant taskdef cannot load a resource outside ./net

When declaring external ant tasks using taskdef, for instance ant-contrib, the proposed setup is to use the followin taskdef: <taskdef resource="net/sf/antcontrib/antcontrib.properties"> ...
2
votes
1answer
555 views

What classpath do I need for an Ant taskdef?

I'm new to Ant. Can someone please tell me what value to put for the 'classpathref' for taskdef? Will it be the path of the class file? If yes can an example be given because I tried that and its not ...
2
votes
4answers
6k views

How can I provide a custom log4j.xml for different ant tasks?

I have a build file that as part of the build process relies on several taskdefs. These taskdef items (for example, webdoclet and jasper2) use log4j as a logger. Ideally, I'd like to be able to ...
1
vote
1answer
52 views

Intellij IDEA doesn't recognized XJC task attributes

I have an ant build.xml file with XJC task definition: <taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask"> <classpath> <fileset dir="jaxb" includes="*.jar" /> ...
1
vote
0answers
424 views

Loading ant libraries after download

I'm trying to write an Ant script that downloads libraries (ivy and svnant) from our repository and use them as taskdef's from the same build script. It works if all the libraries are present or all ...
1
vote
1answer
1k views

Problems with Ant optional tasks SSHExec and SCP. Classpath issue?

I'm in the process of modifying an Ant script (currently in use from within MyEclipse) to work from the command line. I'm doing this so anyone can check out the project and build it without MyEclipse. ...
1
vote
2answers
804 views

Grails ant tasks don't work - Unable to start Grails: java.lang.reflect.InvocationTargetException

I'm having issues getting something which seems very basic running with Grails. I want to call grails commands from an Ant script - Grails provides a Grails task to achieve this. I have defined the ...
0
votes
0answers
96 views

testNG taskdef definition in Ant using Maven dependencies

I am trying to use Ant and Maven to build a project. I am using testNG for test units. As stated here ( http://testng.org/doc/ant.html ) I have defined the taskdef as follow: <taskdef ...
0
votes
1answer
167 views

Integrated ant - taskdef classloader issue

On Weblogic 10.3 my enterprise application includes a webservice that runs ant scripts inside. My problem is that I cannot get my custom tasks running due to java.lang.ClassNotFoundExceptions. (All ...
0
votes
1answer
562 views

Groovy + Antbuilder: How to use Grape to with taskdef?

This is related to . I'm trying to dynamically add the maven-ant-tasks jars with Grape, simulating this: <taskdef uri="antlib:org.apache.maven.artifact.ant" ...