From: Alistair Y. <ali...@sm...> - 2005-07-19 15:17:26
|
anyone going to bung org.apache.tools.ant into lib on head? doesn't compile, if there's any room left in there ;) Alistair |
From: Alistair Y. <ali...@sm...> - 2005-07-19 15:24:44
|
you may ignore all mails from me today as I seem to be having trouble with directories! Alistair On 19 Jul 2005, at 16:17, Alistair Young wrote: > anyone going to bung org.apache.tools.ant into lib on head? doesn't > compile, if there's any room left in there ;) > > Alistair > > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click > _______________________________________________ > Bodington-developers mailing list > Bod...@li... > https://lists.sourceforge.net/lists/listinfo/bodington-developers > |
From: Sean M. <se...@sm...> - 2005-07-19 15:26:23
|
What is happening about a script to take you (at least) from 2.4 to 2.6 re: schema? s |
From: Matthew B. <mat...@co...> - 2005-07-19 15:30:26
|
Alistair Young wrote: > anyone going to bung org.apache.tools.ant into lib on head? doesn't > compile, if there's any room left in there ;) The apache Ant tasks (and their JAR, catalina-ant.jar) are only needed if you are attempting to use any of the tomcat tasks. You should be able to run the "all" task fine without having catalina-ant on your classpath. The reason it isn't in CVS at the moment is that the catalina-ant.jar is something that the developer should provide as depending on the version of tomcat you are trying to deploy against depends on the version of this JAR you want. If you want to use the tomcat ant tasks just add them to your ant classpath (~/.ant/lib or $ANT_HOME/lib/). http://ant.apache.org/manual/running.html#libs You should also be able to do the same with your IDE. It is the same situation with junit. There isn't a junit JAR as developers should already have one and just need to add it to their ant classpath. This is why I was questioning having the ant JAR in the project. All developers should have a copy of this on their local machine. -- +--Matthew Buckett-----------------------------------------+ | VLE Developer, Learning Technologies Group | | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | +------------Computing Services, University of Oxford------+ |
From: Matthew B. <mat...@co...> - 2005-07-19 15:54:56
|
Matthew Buckett wrote: > Alistair Young wrote: > >> anyone going to bung org.apache.tools.ant into lib on head? doesn't >> compile, if there's any room left in there ;) Sorry I misread your mail as org.apache.catalina.ant > The apache Ant tasks (and their JAR, catalina-ant.jar) are only needed > if you are attempting to use any of the tomcat tasks. You should be able > to run the "all" task fine without having catalina-ant on your classpath. > > The reason it isn't in CVS at the moment is that the catalina-ant.jar is > something that the developer should provide as depending on the version > of tomcat you are trying to deploy against depends on the version of > this JAR you want. > > If you want to use the tomcat ant tasks just add them to your ant > classpath (~/.ant/lib or $ANT_HOME/lib/). > http://ant.apache.org/manual/running.html#libs > You should also be able to do the same with your IDE. > > It is the same situation with junit. There isn't a junit JAR as > developers should already have one and just need to add it to their ant > classpath. > > This is why I was questioning having the ant JAR in the project. All > developers should have a copy of this on their local machine. > -- +--Matthew Buckett-----------------------------------------+ | VLE Developer, Learning Technologies Group | | Tel: +44 (0) 1865 283660 http://www.oucs.ox.ac.uk/ | +------------Computing Services, University of Oxford------+ |
From: Alexis O'C. <ale...@co...> - 2005-07-19 16:09:45
|
Matthew Buckett wrote: > Matthew Buckett wrote: > >> Alistair Young wrote: >> >>> anyone going to bung org.apache.tools.ant into lib on head? doesn't >>> compile, if there's any room left in there ;) > > > Sorry I misread your mail as org.apache.catalina.ant > This is a subtle borderline issue I think ;-). I didn't add ant.jar originally, as the TemplateBuilderTask.java which depends on it, gets compiled on the fly when you execute the build.xml. If you're not using Ant to compile Bodington, well then I wish you luck in configuring your IDE to create the web-app! You can always configure your IDE to ignore the (otherwise superfluous) file mentioned above, especially if you're uninterested in compiling templates standalone. Having said that I'm not going to remove the jar, but just thought I should explain why I didn't originally add it. Alexis |