Re: antlib.xml could not be found

2011-03-10 Thread Vimil Saju
You are right. From the stacktrace I see that ant is indeed able to find the tomcat tasks. I think you should set the url property to "http://localhost:8080/manager"; instead of "http://localhost:8080/manager/html"; --- On Thu, 3/10/11, Marseld Dedgjonaj wrote: > From: Marseld Dedgjonaj >

RE: antlib.xml could not be found

2011-03-10 Thread Marseld Dedgjonaj
Thank you Martin, For your help and for your suggestion book. I put the catalina-ant.jar in my classpath, which has the structure "org/apache/catalina/ant/antlib.xml" if you are referring to this. Command to add in classpath: $ CLASSPATH=$CLASSPATH:path/to/catalina-ant.jar If you are not referring

RE: antlib.xml could not be found

2011-03-10 Thread Martin Gainty
you need to declare taskdef (which you have done) but in order for other ant tasks to locate your Deploy task you will need to place the entry into antlib.xml (located on classpath) e.g. ..other entries Nota Bene: Steve Loughrans book 'Ant in anger' is a must buy

RE: antlib.xml could not be found

2011-03-10 Thread Marseld Dedgjonaj
Hi Vimil, Thank you for your response. I have copied the catalina-ant.jar regards to the tutorial I followed. So I think is not this the problem. Regards, Marseld -Original Message- From: Vimil Saju [mailto:vimils...@yahoo.com] Sent: Thursday, March 10, 2011 5:42 PM To: Ant Users List Su

Re: antlib.xml could not be found

2011-03-10 Thread Vimil Saju
You need to have catalina-ant.jar in your classpath as this jar contains the tasks to manage the tomcat server. you can either copy this jar to the ant/lib directory or use the -lib command-line argument to specify the folder under which it is located. Hope this helps you :) --- On Thu, 3/10

Re: retrieve sync not deleting even when it says it is

2011-03-10 Thread Derek E
Okay, following up on this. I've reviewed the documentation found here: http://ant.apache.org/ivy/ivyde/history/latest-milestone/index.html And it looks like I have everything setup as recommended. So what doesn't make sense to

antlib.xml could not be found

2011-03-10 Thread Marseld Dedgjonaj
Hello everybody, I am new to Ant and more detailed help would be more valuable to me. I am trying to use Ant to reload a tomcat application. I write the build.xml file based on "Managing Applications with Ant" section of the "Professional Apache Tomcat" book. The Build.xml file:

Re: Change the Java Compiler

2011-03-10 Thread Stefan Bodewig
On 2011-03-09, Thomas Kluge wrote: > I`d like to compiler the Dacapo Benchmark with the Java 7 Compiler. > The Benchmark uses an ant build script. I assume you can modify the compilation part of said buildfile. > The Java 7 compiler is just the compiler and not a hole virtual machine. The easie