RE: I am new to ANT

2008-06-10 Thread Anderson, Rob (Global Trade)
Targets are explained in the manual here... http://ant.apache.org/manual/using.html#targets No, Ant will not change the way you run your program. -Rob A -Original Message- From: mahesh.mach [mailto:[EMAIL PROTECTED] Sent: Sunday, June 08, 2008 11:04 PM To: user@ant.apache.org Subject: I

Re: send mail in a HTML format

2008-06-10 Thread Martin
I think you can set the 'messageMimeType' parameter to text/html as in messageMimeType="text/html" http://maven.apache.org/maven-1.x/plugins/test/faq.html Anyone? Martin-- - Original Message - From: "Guy Catz" <[EMAIL PROTECTED]> To: "Ant Users List" Sent: Tuesday, June 10, 2008 5:37

RE: send mail in a HTML format

2008-06-10 Thread Rebhan, Gilbert
-Original Message- From: Guy Catz [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 11:37 AM To: Ant Users List Subject: send mail in a HTML format /* Hey guys, How do I use the mail task to send in a HTML format? There seems to be a mimetype property. Is this what I need? the ma

Re: appending to fileset

2008-06-10 Thread Dominique Devienne
On Sun, Jun 8, 2008 at 11:22 PM, Shawn Castrianni <[EMAIL PROTECTED]> wrote: > Is there a way to incrementally add files to a fileset? > I am building a fileset by looping through an XML file and need to add files > to a named fileset one by one if they meet certain criteria. > Is this possible wit

Setting a universal classpath

2008-06-10 Thread Tim Visher
Hey all, I'm working on allowing all of my dependencies to be managed in SCM and one small issue that I've run into now is that I can't figure out how to set my classpath universally for a particular build file. I'm sure there's a way to do this. I think the functionality that I'm looking for is

Re: how to return properties from "called" build.xml target to "calling" build.xml target

2008-06-10 Thread Dale Anson
The ant-contrib version of antcallback has a bug that will cause the build to fail with Ant 1.7 when it is called from an "import" build file. I fixed it in the Antelope version of the task: http://antelope.tigris.org/files/documents/1409/11489/AntelopeTasks_3.4.5.zip I haven't updated the an

RE: how to return properties from "called" build.xml target to "calling" build.xml target

2008-06-10 Thread Rebhan, Gilbert
-Original Message- From: sactiw [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 3:06 PM To: user@ant.apache.org Subject: RE: how to return properties from "called" build.xml target to "calling" build.xml target /* Hi Rehban, I found the solution and now I am using

RE: how to return properties from "called" build.xml target to "calling" build.xml target

2008-06-10 Thread sactiw
Hi Rehban, I found the solution and now I am using ant-contrib-1.0b2 and lot many classes including the one I needed are available under \lib\ant-contrib.jar\net\sf\antcontrib\logic\ Directory. Yes you are absolutally right some one should must update that site. Where do you think w

JUnit task

2008-06-10 Thread Tim Visher
Hello everyone, I'm struggling to understand the junit task. I was wondering if anyone knew of a good tutorial or article that is current (junit 4, ant 1.7) that is perhaps slightly better than the junit page in the manual. Thanks! -- In Christ, Timmy V. http://burningones.com/ http://five.

RE: how to return properties from

2008-06-10 Thread Rebhan, Gilbert
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 2:35 PM To: Rebhan, Gilbert Subject: RE: how to return properties from */ These are the classes available in that 0.3 jar: Assert Foreach For If Outoutdate RunTarget Switch Throw T

RE: how to return properties from "called" build.xml target to "calling" build.xml target

2008-06-10 Thread Rebhan, Gilbert
-Original Message- From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 12:58 PM To: Ant Users List Subject: RE: how to return properties from "called" build.xml target to "calling" build.xml target should read see = http://ant-contrib.sourceforge.net/ tasks

RE: how to return properties from "called" build.xml target to "calling" build.xml target

2008-06-10 Thread Rebhan, Gilbert
-Original Message- From: sactiw [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 12:53 PM To: user@ant.apache.org Subject: how to return properties from "called" build.xml target to "calling" build.xml target /* Hi Friends, Could anybody tell me how can we pass pr

how to return properties from "called" build.xml target to "calling" build.xml target

2008-06-10 Thread sactiw
Hi Friends, Could anybody tell me how can we pass properties from a "called" build.xml target to the calling build.xml target something like what we have as return values in case of methods and procedures in programming languages. In my case I want to return the exit status from the

RE: appending to fileset

2008-06-10 Thread Rebhan, Gilbert
-Original Message- From: Shawn Castrianni [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2008 6:23 AM To: 'Ant Users List' Subject: appending to fileset /* Is there a way to incrementally add files to a fileset? I am building a fileset by looping through an XML file and need to add

send mail in a HTML format

2008-06-10 Thread Guy Catz
Hey guys, How do I use the mail task to send in a HTML format? There seems to be a mimetype property. Is this what I need? the manual doesn't say how to use it. Please advise. Thanks.