RE: Hi... just joined the list 'cos of this problem.

2002-10-18 Thread Ruchi Agarwal
Please Check the manual... http://jakarta.apache.org/ant/manual/ The mail task supports the mailport attribute. Regards, Ruchi -Original Message- From: Vikram Kulkarni [mailto:vkulkarni;icope.com] Sent: Friday, October 18, 2002 12:55 PM To: Ant Users List Subject: Re: Hi... just joined

Re: Hi... just joined the list 'cos of this problem.

2002-10-18 Thread Vikram Kulkarni
Didn't you get this message? The mail task doesn't support the mailport attribute. Try modifying your mail task like this: target name=mail depends=prepare mail mailhost=10.0.0.10 subject=Test build from =[EMAIL PROTECTED] tolist=[EMAIL PROTECTED] files=build.xml/ /target where 'files'

RE: IDE

2002-10-18 Thread Nascif Abousalh-Neto
Emacs + JDEE JDEE provides and excelent environement for Java development with Ant (or make, or...), and Emacs can deal very well with build.xml files. And it also works on Windows, Linux, Solaris, etc - Nascif -Original Message- From: George Smith

Re: IDE

2002-10-18 Thread Primoz . Prislan
I use IntelliJ Idea and it works perfectly with Ant. Primoz Prislan. George

Re: create cab in linux; patch request

2002-10-18 Thread newsham
Stefan Bodewig wrote: On Mon, 14 Oct 2002, [EMAIL PROTECTED] wrote: Hmm, but if you read from stdin, you'll block until something is available to read, so this shouldn't be a problem, right? Hmm, this here (from the javadocs of java.lang.Process) , | The created subprocess

RE: IDE

2002-10-18 Thread Primoz . Prislan
Do you mean ant source file? Idea aloows you to open and edit ant scripts. Primoz. Chappell, Simon P

RE: Looking for a Build Philosophy

2002-10-18 Thread Dominique Devienne
Sadly, I'd have to concur with Scott. Treats are not enough, especially in a distributed environment where people are in at least 3 cities, if not working from home. We have all the right intention/process in place, published, etc... and still people don't write test, and half the time write so-so

RE: IDE

2002-10-18 Thread Peter
-Original Message- From: Nascif Abousalh-Neto [mailto:nascif;nortelnetworks.com] Sent: Friday, 18 October 2002 8:30 a.m. To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: IDE Emacs + JDEE JDEE provides and excelent environement for Java development with Ant (or make,

RE: Looking for a Build Philosophy

2002-10-18 Thread Scott Francis
Your solution sounds a lot like CruiseControl. The big question of whether or not you are able to do something like this depends on the size of your codebase. If your builds are processor intensive and/or take a considerable amount of time this might not be an option. But I would agree, if

RE: Looking for a Build Philosophy

2002-10-18 Thread Chaganthi, Madhusudan R.
Though slightly OT, Using jikes compiler instead of javac for Weblogic's ejbc will speed up the process. -Original Message- From: Unchis, Debra [mailto:DUnchis;coral-energy.com] Sent: Thursday, October 17, 2002 2:35 PM To: 'Ant Users List' Subject: RE: Looking for a Build Philosophy

RE: Looking for a Build Philosophy

2002-10-18 Thread Shackelford, John-Mason
You might consider using Cruise Control to automate builds. You can set Cruise Control to build after any check-in occurs and a specified idle time on the source control has elapsed. It automatically sends emails to the build manager and offending developer whenever the build is broken. A servlet

RE: Looking for a Build Philosophy

2002-10-18 Thread Vishal_Santoshi
well we have a different approach we have an integration between checkins to cvs and ant a checkin into a tagged module results in a build being launched (of course the developer who does the check in is listed).. we build the whole system up for every chain ..(though that needs a

Re: Looking for a Build Philosophy

2002-10-18 Thread Steve Loughran
- Original Message - From: Unchis, Debra [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 17, 2002 10:55 AM Subject: Looking for a Build Philosophy I mean I'm sure this can be simplified to build when it's necessary or when changes are made, but I find on my project

Re: Condition Task Question

2002-10-18 Thread Primoz . Prislan
Actually every ant target can have if or unless attribute. That means that target will be executed only if property is (or is not) set. You can use it like this: target if=blabla ... Primoz.

re: IDE

2002-10-18 Thread Primoz . Prislan
I have same problem(s). Primoz. Steve

javadoc question

2002-10-18 Thread $B%X!<%s(B $B%H!<%^%9(B
Hi, (B (BMaybe a stupid beginner question, (Bbut it I cant manage to get javadoc (Bworking in my build.xml: (B (Btarget name="javadoc" depends="prepare" (B javadoc sourcepath="src" destdir="doc" (B classpath="..." / (B/target (B (BIt didn't work either with

Re: javadoc question

2002-10-18 Thread Stefan Bodewig
On Fri, 18 Oct 2002, %s(B $B%H! %^%9(B [EMAIL PROTECTED] wrote: Maybe a stupid beginner question, maybe it's just my mail-reader but I get a lot of garbled characters (both in your From header and in Ant's output 8-). Could it be that you need to set javadoc's encoding attribute? Stefan

Re: javadoc question

2002-10-18 Thread $B%X!<%s(B $B%H!<%^%9(B
maybe it's just my mail-reader but I get a lot of (B garbled characters (B (BI work with japanese environment (kterm). (BIf I run it in an English env. still got the same (B(no garbled chars): (B (Bjavadoc: (B [javadoc] Generating Javadoc (B [javadoc] Javadoc execution (B [javadoc]

Re: RE: Hi... just joined the list 'cos of this problem.

2002-10-18 Thread Hari Kodungallur
Most likely to fail because of (1) mailhost/mailport wrong: check with your sysadmin to make sure that the SMTP mailhost's IP address is correct and the port is correct. The default for the port is 25 and I have hardly seen people changing it.. so its worth a try to verify it (2) if (1) is

Re: Looking for a Build Philosophy

2002-10-18 Thread Robert r. Sanders
Check out Java Tools for Extreme Programming by Richard Hightower and Nicholas Lesiecki. I scanned my way through the examples and managed to pick up lots of very helpful advice that can can be applied to pretty much any Java development. There are some (pricy) tools that are more

Re: java.lang.NoClassDefFoundError

2002-10-18 Thread Erik Hatcher
Vikas Malla wrote: Help is required to solve this problem: I am trying to run this test MyTest.java . I make some API calls ,defined in a package myPackage.f1.f2.f3.MyBean, in MyTest.java I am able to compile this file. But when I run this test using ant, I get NoClassDefFoundError. Please keep

Looking for a Build Philosophy

2002-10-18 Thread Malik, Yousuff
Here are some of the best practices that I have found works 1)Nightly development and integration builds 2)You need to have different dev, int and QA branches. Clearcase is highy recommended. 3)Schedule the nightly builds on a cron job and if a compilation error occurs send out an email to

RE: IDE

2002-10-18 Thread Abramovich, Boris
John what kind of errors do you see when using ant with eclipse? -Original Message- From: Shackelford, John-Mason [mailto:ShacJo;ncs.com] Sent: Thursday, October 17, 2002 11:06 AM To: 'Ant Users List' Subject: RE: IDE Henri, How did you get Eclipse 2.0.1 to handle Ant 1.5.1 without

More Direct Target Call, Besides AntCall?

2002-10-18 Thread Murray, Mike B.
I am trying to enable target overriding in inheriting scripts. Since, I cannot use dynamic dependencies, I'm currently using variablized AntCalls, but I'd prefer a more direct method, similar to the way depends works. I do not need a new project instantiated, and I don't need the property

Condition Task Question

2002-10-18 Thread Justo Casablanca
Hi all, I really like having a Condition task and all, but all it seems to allow you is the setting of a property to true if the condition is met. How do you actually _do_ something based on the true/false value of the property ? Thx in advance !!!

Hi... just joined the list 'cos of this problem.

2002-10-18 Thread Ruchi Agarwal
Hi, I want to use the mail target in my project But facing some problem Error saying ** Buildfile: a.xml init: [mail] Sending email: Test build [mail] Failed to send email BUILD FAILED file:D:/test/a/a.xml:15: Problem while sending mime mail: Total time: 2 seconds

RE: Looking for a Build Philosophy

2002-10-18 Thread Mohamed, Haneef
I had a couple of thoughts on this: [Background: I am the build, test, test-tools developer for our project] 1. Having worked somea as a developer has saved me a lot of work when the build breaks. Then I can submit targeted bugs like: two diferrent versions of log4j.jar are being used, circular

RE: IDE

2002-10-18 Thread Chappell, Simon P
Now there's a question to start a flamewar! ;-) I find that I'm able to use different IDEs and still build my projects using ant by calling it from a command line. This removes the IDE question for me. Now that VisualAge for Java is history (mostly), no IDE doesn't allow you direct access to

java.lang.NoClassDefFoundError

2002-10-18 Thread Vikas Malla
Help is required to solve this problem: I am trying to run this test MyTest.java . I make some API calls ,defined in a package myPackage.f1.f2.f3.MyBean, in MyTest.java I am able to compile this file. But when I run this test using ant, I get NoClassDefFoundError. Please keep in mind that I

RE: Looking for a Build Philosophy

2002-10-18 Thread Malik, Yousuff
Here are some of the best practices that I have found works 1)Nightly development and integration builds 2)You need to have different dev, int and QA branches. Clearcase is highy recommended. 3)Schedule the nightly builds on a cron job and if a compilation error occurs send out an email to the

RE: Condition Task Question

2002-10-18 Thread Chris Bailey
You can use the property in an if/unless attribute of a target. Also, you can set a value other than true into a property, by using the value attribute of the conditional. -Original Message- From: Justo Casablanca [mailto:jcasablanca;cfl.rr.com] Sent: Thursday, October 17, 2002 9:15

Re: create cab in linux; patch request

2002-10-18 Thread Stefan Bodewig
On Mon, 14 Oct 2002, [EMAIL PROTECTED] wrote: Hmm, but if you read from stdin, you'll block until something is available to read, so this shouldn't be a problem, right? Hmm, this here (from the javadocs of java.lang.Process) , | The created subprocess does not have its own terminal or

Re: javadoc question

2002-10-18 Thread Stefan Bodewig
On Fri, 18 Oct 2002, %s(B $B%H! %^%9(B [EMAIL PROTECTED] wrote: If I run it in an English env. still got the same (no garbled chars): great, but this time I can read them 8-) javadoc sourcepath=src destdir=doc classpath=... / doesn't say which classes you want documentation for. You

RE: Looking for a Build Philosophy

2002-10-18 Thread Scott Francis
Ok, there have been a lot of decent comments coming from the mailing list but let me take things to a little higher level view. 1) First off without managerial support you will not be able to achieve any type of build management. If you have developers who are used to doing things a certain

RE: ant problem under cygwin and questions from a wanna-be Makefile convert

2002-10-18 Thread Ralf Hauser
-Original Message- From: Diane Holt [mailto:holtdl;yahoo.com] Sent: Donnerstag, 17. Oktober 2002 07:13 To: Ant Users List; [EMAIL PROTECTED] Subject: RE: ant problem under cygwin and questions from a wanna-be Makefile convert i) if there is a *.??.m4 file, run m4 on that file

RE: Looking for a Build Philosophy

2002-10-18 Thread Bwana McCall
A great thread indeed! I too have been challenged with the CM role at our company and am looking for ideas on improving our existing philosophy. Much of what was said is what we strive to do including: * Nightly Builds (with automated tests + junit/winrunner reports) Who broke the build??

Looking for a Build Philosophy

2002-10-18 Thread Unchis, Debra
Here's a change of pace question for the group... I am the Build Manager for my group. By Build Manager I mean I wrote the build.xml for our code, I don't have a full fledged background in what I'm calling build philosophy. So I'm no expert here, I'm just trying to get an idea on how other

RE: Looking for a Build Philosophy

2002-10-18 Thread Unchis, Debra
Wow! Everyone this is all great stuff, thanks so much for your speedy replies. Simon and Yousuff - tell me more about your Integration builds (Simon - we are looking at using CM Synergy, I just love that product). By Integration do you mean just building the changed pieces? Currently we build

Re: Looking for a Build Philosophy

2002-10-18 Thread Steve Loughran
- Original Message - From: Malik, Yousuff [EMAIL PROTECTED] To: 'Ant Users List' [EMAIL PROTECTED] Sent: Thursday, October 17, 2002 11:18 AM Subject: RE: Looking for a Build Philosophy Here are some of the best practices that I have found works 1)Nightly development and integration

Re: IDE

2002-10-18 Thread Henri Gomez
George Smith wrote: What IDE do most ant users use ? The choices are overwhelming. Thanks in advance. I'm using Eclipse 2.0.1 with ant 1.5.1 and it works great even if it seems that memory used by ant task is not reclaimed/freeed so you could expect some problems after 10/30 ant build. Yes

RE: Looking for a Build Philosophy

2002-10-18 Thread Chappell, Simon P
-Original Message- From: Scott Francis [mailto:scott.francis;newisys.com] Sent: Thursday, October 17, 2002 1:51 PM To: Ant Users List Subject: RE: Looking for a Build Philosophy Ok, there have been a lot of decent comments coming from the mailing list but let me take things to a

RE: IDE

2002-10-18 Thread Shackelford, John-Mason
So my answer is anything or nothing and call ant from the command line. Yep. I find that works best for me. John-Mason Shackelford Software Developer NCS Pearson - Measurement Services 2510 North Dodge St. Iowa City, IA 52245 319-354-9200x6214 [EMAIL PROTECTED]

Re: Possible bug with copy in Ant 1.5

2002-10-18 Thread Jerome Lacoste @ BBC
Stefan Bodewig wrote: On Mon, 14 Oct 2002, Jerome Lacoste [EMAIL PROTECTED] wrote: Non-existent file last modified: 0 In that case I don't really see how the current code can assume an non-existing file to be up-to-date. There is no real difference between the code here and the one

RE: IDE

2002-10-18 Thread Shackelford, John-Mason
George, Intellij IDEA is a popular Java IDE with good Ant support--perhaps the best Ant support of any IDE. I actually use Eclipse for Java development. Its support for Ant is, IMHO, clumsy and I don't use it; however, the Ant plug-in is currently being rewritten and will probably appear in a

RE: Looking for a Build Philosophy

2002-10-18 Thread Scott Francis
Yes, I've tried it both ways myself and a lot of it really depends on the size of the development organization and the corporate mentality there. I've found that it's best to come in with the sugar approach first and have the vinegar as a last resort. At least that way you give everyone fair

Re: IDE

2002-10-18 Thread David Jencks
http://jdee.sunsite.dk/ I think it used to be called JDE, I still usually do anyway. I don't know about package 2.28. david jencks On 2002.10.17 17:48:26 -0400 Michael Salera wrote: Is this the same as JDE package 2.28 ?? Do you know where to find out more? Cheers, Michael -

Re: javadoc question

2002-10-18 Thread $B%X!<%s(B $B%H!<%^%9(B
--- Stefan Bodewig [EMAIL PROTECTED] (B You need to specify either the sourcefiles (B (via the sourcefiles attribute or nested (B filesets) or packagenames (packagenames or (B packageList attributes or nested packagesets). (B Combine them to your liking. (B (BWhen I try fileset with (B

RE: IDE

2002-10-18 Thread Ken Gentle
At 12:07 PM 10/17/2002 -0400, you wrote: Try Together ControlCenter from togethersoft.com And bring Daddy Warbuck's checkbook. They've priced themselves right out of the individual and small to medium sized shop's budgets. JFTR and IMHO, there is no competition to Together in terms of

Re: Looking for a Build Philosophy

2002-10-18 Thread Steve Loughran
- Original Message - From: Dominique Devienne [EMAIL PROTECTED] To: 'Ant Users List' [EMAIL PROTECTED] Sent: Thursday, October 17, 2002 12:30 PM Subject: RE: Looking for a Build Philosophy Sadly, I'd have to concur with Scott. Treats are not enough, especially in a distributed

Re: IDE

2002-10-18 Thread Stefano Mancarella
Aaron Steele wrote: I guess people don't like Forte (Sun One Studio) or Netbeans? Its integration with ant is very good, at least with 1.4. You can create the build.xml and run it right in the IDE. It will even check if y our syntax is correct and tell you where the problems are. Yes, but it

re: IDE

2002-10-18 Thread Steve Loughran
on the subject of IntelliJ early builds, I've been trying to grab a recent build, as I've been on build 642 for a while, and they are up at 660. But the server seems eternally busy right now, at least for downloads. Has anyone here got a recent intellij download? With working ant refactoring?

Re: IDE

2002-10-18 Thread Erik Hatcher
George Smith wrote: What IDE do most ant users use ? IntelliJ IDEA - it rocks! George R Smith On the side of the software box, in the 'System Requirements' section, it said 'Requires Windows 95 or better'. So I installed Linux! And did the software install and run on Linux too?! :)) (I

Re: javadoc question

2002-10-18 Thread Stefan Bodewig
On Fri, 18 Oct 2002, %s(B $B%H! %^%9(B [EMAIL PROTECTED] wrote: Class org.apache.tools.ant.taskdefs.Javadoc doesn't support the nested fileset element ... Upgrade to Ant 1.5.x. Stefan -- To unsubscribe, e-mail: mailto:ant-user-unsubscribe;jakarta.apache.org For additional commands,

RE: IDE

2002-10-18 Thread Vadim Katz
Try Together ControlCenter from togethersoft.com vadim -Original Message- From: Carlos OKieffe [mailto:losjr;ccs.nrl.navy.mil] Sent: Thursday, October 17, 2002 11:57 AM To: 'Ant Users List'; [EMAIL PROTECTED] Subject: RE: IDE Ive used ant with 1) Visual C++ 6.0 2) JBuilder 3)

Re: Possible bug with copy in Ant 1.5

2002-10-18 Thread Stefan Bodewig
On Fri, 18 Oct 2002, Jerome Lacoste [EMAIL PROTECTED] wrote: If the problems comes again, I will let you know. Thanks Stefan -- To unsubscribe, e-mail: mailto:ant-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:ant-user-help;jakarta.apache.org

RE: IDE

2002-10-18 Thread Carlos OKieffe
Ive used ant with 1) Visual C++ 6.0 2) JBuilder 3) JDeveloper Since I do not know of an IDE that integrates ant (anyone feel free to inform me otherwise), I think the choice of IDE is more dependent on the IDE you like best. -Original Message- From: George Smith

RE: IDE

2002-10-18 Thread Armenio Pinto
Sir, here is the desired Ant plugin for VIM! http://www.vim.org/script.php?script_id=155 Arménio Pinto -Original Message- From: Dominique Devienne [mailto:DDevienne;lgc.com] Sent: quinta-feira, 17 de Outubro de 2002 17:24 To: 'Ant Users List' Subject: RE: IDE VIM is really good

Re: IDE

2002-10-18 Thread Steve Loughran
- Original Message - From: Erik Hatcher [EMAIL PROTECTED] To: Ant Users List [EMAIL PROTECTED] Sent: Thursday, October 17, 2002 8:55 AM Subject: Re: IDE George Smith wrote: What IDE do most ant users use ? IntelliJ IDEA - it rocks! agreed, but I prefer jEdit for xml file editing,

RE: IDE

2002-10-18 Thread Shackelford, John-Mason
Henri, How did you get Eclipse 2.0.1 to handle Ant 1.5.1 without spewing errors? John-Mason Shackelford Software Developer NCS Pearson - Measurement Services 2510 North Dodge St. Iowa City, IA 52245 319-354-9200x6214 [EMAIL PROTECTED] -Original Message- From: Henri Gomez

Trying to re-use taskdef's classpath with the task

2002-10-18 Thread Mike Williams
I'm getting confused with class-loader issues, and need help. I have a custom taskdef, which I declare as follows: taskdef name=vdoclet classname=vdoclet.ant.VDocletTask classpath path refid=main.classpath / /classpath

RE: Stopping java processes started with ant

2002-10-18 Thread Nascif Abousalh-Neto
Title: RE: Stopping java processes started with ant Hi Dave, It is very simple stuff. I use wrapper scripts that write the server pid to a file, and then later a script that reads the pid and kills the associated process. Works fine on Solaris, may work on Windows with cygwin but I have

RE: IDE

2002-10-18 Thread Rajat Gupta
Hi, JDeveloper works fine with me. The new version of JDev has good support for ANT. If I remember correctly, there are some free libraries also available for integration of ANT and JDev. Rajat -Original Message- From: Vadim Katz [mailto:vadim.katz;verizon.com] Sent: Thursday, October

Re: updating jar files with each build

2002-10-18 Thread Lisa Knee
update didn't do anything, whereas delete did! i don't have time to figure out exactly why ... deadlines deadlines ... :) lis - Original Message - From: Peter [EMAIL PROTECTED] To: 'Ant Users List' [EMAIL PROTECTED] Sent: Wednesday, October 16, 2002 6:10 PM Subject: RE: updating jar

RE: IDE

2002-10-18 Thread Dominique Devienne
VIM is really good indeed! Which Ant plugin are you talking about? Thanks, --DD -Original Message- From: Armenio Pinto [mailto:armenio-p-pinto;ptinovacao.pt] Sent: Thursday, October 17, 2002 11:18 AM To: 'Ant Users List' Subject: RE: IDE VIM rulez, with ANT plugin and my personal

RE: IDE

2002-10-18 Thread Aaron Steele
I guess people don't like Forte (Sun One Studio) or Netbeans? Its integration with ant is very good, at least with 1.4. You can create the build.xml and run it right in the IDE. It will even check if y our syntax is correct and tell you where the problems are. Aaron Steele Java Consultant

Re: IDE

2002-10-18 Thread Gordon Tyler
I'd have to vote for IntelliJ IDEA. It's a programmer's IDE not a GUI designer's IDE and the latest early access builds have great support for Ant: - Syntax highlighting and some autocompletion (properties) for Ant build files - Ant build pane which lists the targets in an Ant file and allows

RE: IDE

2002-10-18 Thread Armenio Pinto
VIM rulez, with ANT plugin and my personal scripts! Customize power! Arménio Pinto -Original Message- From: George Smith [mailto:gsmith;budgetext.com] Sent: quinta-feira, 17 de Outubro de 2002 16:41 To: [EMAIL PROTECTED] Subject: IDE What IDE do most ant users use ? The choices are

Ant API: BuildListener does not hear compiler errors with JDK 1.4

2002-10-18 Thread Simeon Kirov
Hi all, I apologize if it was discussed already, but I couldn't find it in threads... I guess this is related to the latest javac in J2SDK 1.4. When using Ant API in a custom program to build projects, BuildListener does not fire events when a compilation error occures. I noticed it

Re: loadproperties gotcha

2002-10-18 Thread Stefan Bodewig
On Tue, 15 Oct 2002, John-Mason Shackelford [EMAIL PROTECTED] wrote: Stefan, Both tasks use Properties#load(InputStream) Ah, then this explains the behavior. When Ant loads a property file it is just pulling key-value pairs out of a HashTable. When a property is previously defined normal

SV: IDE

2002-10-18 Thread Christian Holmqvist, IT, Posten
Intellij is up to build 661 (it roxx!!) now and the only way to get it (since they have a server problem it seams) is the get a tool like reget that keeps trying until it gets the download But I never heard of ant refactoring...??!! Cheers Christian -Ursprungligt meddelande- Från:

Re: Condition Task Question

2002-10-18 Thread Justo Casablanca
Are you sure that every target does ? I'm trying to use unless in the depend unless=my.property .../ target, but I get this error: build.xml:110: The depend task doesn't support the unless attribute. - Original Message - From: [EMAIL PROTECTED] To: Ant Users List [EMAIL PROTECTED] Sent:

RE: More Direct Target Call, Besides AntCall?

2002-10-18 Thread Dominique Devienne
Such a task exists in JBoss' buildmagic package, and is called CallTarget.java. It has a few caveats, but might be what you want. --DD -Original Message- From: Murray, Mike B. [mailto:mbm;ptc.com] Sent: Thursday, October 17, 2002 4:45 PM To: [EMAIL PROTECTED] Subject: More Direct Target

RE: Condition Task Question

2002-10-18 Thread Dominique Devienne
Or you get ant-contrib's new tasks (mostly working fine), and can do things like (examples from production build files): if istrue value=${verbose} / then echo message=Building ${ant.project.name} / echo message= on ${env.COMPUTERNAME} / echo message=

RE: IDE

2002-10-18 Thread Nascif Abousalh-Neto
Yes, it changed names recently, and that is the correct link to their page. The current official version is 2.2.8 (not 2.28), the latest beta is 2.2.9beta12 Support for Ant is one of the hot topics on it nowadays. - Nascif -Original Message- From: David Jencks

Re: IDE

2002-10-18 Thread George Smith
Thanks to all who have responded. I have downloaded Eclipse and VIM and have ANT working on both. What I have not been able to find out is how to set up a java code completion on either one. thanks again George R Smith On the side of the software box, in the 'System Requirements' section, it

Re: java.lang.NoClassDefFoundError

2002-10-18 Thread Erik Hatcher
Thats all fine and well, but I don't see a javac or a war task (given that you're using Cactus, you need to ensure you're deploying your test and production classes too). Erik Vikas Malla wrote: Please find my build.xml. Please let me know. Thanks. !--build.xml starts HERE-- project

Re: IDE

2002-10-18 Thread Richard Tasker
For Eclipse it is Ctrl+Space for completion. Also look at: Window-Preferences-Java-Templates For all the code templates. Enjoy using the _best_ IDE around ;-) Richard - Original Message - From: George Smith [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 18, 2002 4:47 PM

RE: More Direct Target Call, Besides AntCall?

2002-10-18 Thread Shackelford, John-Mason
Mike, I'd like to hear more about what you are doing with inheriting scripts and target overriding. Would you mind writing a few sentences describing your approach? John-Mason Shackelford Software Developer NCS Pearson - Measurement Services 2510 North Dodge St. Iowa City, IA 52245

RE: Condition Task Question

2002-10-18 Thread Chris Bailey
No, only the target task supports it. As in: target name=iffy-task depends=something-else unless=dont-do-it -Original Message- From: Justo Casablanca [mailto:jcasablanca;cfl.rr.com] Sent: Friday, October 18, 2002 6:29 AM To: Ant Users List Subject: Re: Condition Task Question

RE: Condition Task Question

2002-10-18 Thread Shackelford, John-Mason
Stefan wrote: +1 Not to relaunch a debate, but I must concur with Stefan. While I started with Ant by relying on ant-contrib's if, I've moved to using only the conditional features which are part of Ant core. Doing so has required simplifying our process in other ways, but I am learning to love

Re: ANT and cruisecontrol

2002-10-18 Thread Erik Hatcher
Its really the wrong list for this - inquire with the CruiseControl team. But, CruiseControl knows about Ant and the JDK from its running environment through shell/batch scripts that launch it. Erik L.C. Oliver wrote: Hi, Do I set the system variables for the cruise control. I am trying to

Re: IDE

2002-10-18 Thread Gordon Tyler
Steve Loughran wrote: on the subject of IntelliJ early builds, I've been trying to grab a recent build, as I've been on build 642 for a while, and they are up at 660. But the server seems eternally busy right now, at least for downloads. Has anyone here got a recent intellij download? With

RE: Condition Task Question

2002-10-18 Thread Kris Henderson
Please forgive this stupid question but what does +1 mean? Kris -Original Message- From: Stefan Bodewig [mailto:bodewig;apache.org] Sent: Friday, October 18, 2002 7:05 AM To: [EMAIL PROTECTED] Subject: Re: Condition Task Question +1 Stefan -- To unsubscribe, e-mail:

RE: Condition Task Question

2002-10-18 Thread Shackelford, John-Mason
what does +1 mean? It's a thumbs up vote. John-Mason Shackelford Software Developer NCS Pearson - Measurement Services 2510 North Dodge St. Iowa City, IA 52245 319-354-9200x6214 [EMAIL PROTECTED] -Original Message- From: Kris Henderson [mailto:khenderson;peerless.com] Sent: Friday,

Re: javadoc question

2002-10-18 Thread Gordon Tyler
$B%X!<%s(B $B%H!<%^%9(B wrote: (B The attribute sourcefiles works, but I have to list (B all of my java files ;-( (B (BYou may find the packagenames attribute more useful then: (B (Bjavadoc sourcepath="src" destdir="doc" classpath="..." (Bpackagenames="com.mycompany.product*"

HTTP 404

2002-10-18 Thread Vikas Malla
During testing response from links, I found that on a 404, the test simply fails, whereas on a 200, everything works fine and I am able to use the response object to get the responsecode. how can I do the same if the link generates a 404 response without the test failing? thanks. Yahoo!

RE: content based uptodate

2002-10-18 Thread Dominique Devienne
You mean a selector, right? Can you set the buffer size like in checksum? This improved performance a lot I recall. Can you share it as-is thru Bugzilla? Thanks, --DD -Original Message- From: Steve Loughran [mailto:steve_l;iseran.com] Sent: Friday, October 18, 2002 12:10 PM To: Ant Users

Re: HTTP 404

2002-10-18 Thread Ken Gentle
There still isn't enough information here to thoroughly diagnose the problem -- the snippet has at least one error: test name=TestLinks'/ ^ missing a quote (and should be double quotes, right?) What is in TestLinks? What is it you're testing? Does it

RE: Hi... just joined the list 'cos of this problem./mail target

2002-10-18 Thread Mohamed, Haneef
Ruchi, Here is the syntax of the target I use to send out email in case my junit tests fail. Following that is a modified target for you, if a build fails target name=send-report-failure-junit if=junit.failed depends=unit-test-report mail

Re: HTTP 404

2002-10-18 Thread Vikas Malla
I am trying to test a list of links, by getting their response codes from their response objects. But whenever a 404/500 is encountered, i am not able to complete my list. The test stops at the 404/500 error generating link. Is there a way I can avoid that so that I continue with my list even

Re: IDE

2002-10-18 Thread Steve Loughran
- Original Message - From: Gordon Tyler [EMAIL PROTECTED] To: Ant Users List [EMAIL PROTECTED] Sent: Friday, October 18, 2002 10:16 AM Subject: Re: IDE Steve Loughran wrote: on the subject of IntelliJ early builds, I've been trying to grab a recent build, as I've been on build 642

Re: content based uptodate

2002-10-18 Thread Steve Loughran
- Original Message - From: Dominique Devienne [EMAIL PROTECTED] To: 'Ant Users List' [EMAIL PROTECTED] Sent: Friday, October 18, 2002 10:46 AM Subject: RE: content based uptodate You mean a selector, right? Can you set the buffer size like in checksum? This improved performance a lot

Re: HTTP 404

2002-10-18 Thread Steve Loughran
- Original Message - From: Vikas Malla [EMAIL PROTECTED] To: Ant Users List [EMAIL PROTECTED] Sent: Friday, October 18, 2002 11:18 AM Subject: Re: HTTP 404 So do you mean that I should just catch the exceptions in my java classes as I would have done normally. Please find the task

Re: HTTP 404

2002-10-18 Thread Vikas Malla
yes Steve Loughran [EMAIL PROTECTED] wrote: - Original Message - From: Vikas Malla To: Ant Users List Sent: Friday, October 18, 2002 11:18 AM Subject: Re: HTTP 404 So do you mean that I should just catch the exceptions in my java classes as I would have done normally. Please

Re: IDE

2002-10-18 Thread Gordon Tyler
Steve Loughran wrote: Yep, I'm running 661. I used ReGet to pound the download server until I got through ;) oh, could you just email it to me if you have the win32 drop? (and not to the whole mail list, who may not appreicate it) Before I do so: 1. This is the Windows self extractor, I

Re: HTTP 404

2002-10-18 Thread Steve Loughran
ok then. you are encountering a bug in how java.net handles errors, it is not an ant bug. It is an issue with java runtimes and the like. Go change your tests to handle FileNotFound exception, which is all you get on java1.3 to recognise trouble. Try more recent drops of httpunit to. -

Re: IDE

2002-10-18 Thread Steve Loughran
- Original Message - From: Gordon Tyler [EMAIL PROTECTED] To: Ant Users List [EMAIL PROTECTED] Sent: Friday, October 18, 2002 12:21 PM Subject: Re: IDE Steve Loughran wrote: Yep, I'm running 661. I used ReGet to pound the download server until I got through ;) oh, could you just

RE: Condition Task Question

2002-10-18 Thread Shackelford, John-Mason
Justo Casablanca wrote: Ok, so now I must ask, what does +1 mean in this context ? Stefan was responding to a comment made by Dominique in which Dominique said: Note that if/switch/etc... are not officially supported by the Ant team, nor recommended. Report any problems to the ant-contrib