Re: cannot open ant 1.6.5 zip file

2008-12-17 Thread navneet12
There are known file size limitations when downloading via Internet Explorer (IE) 6 and 7. More specifically, IE 6 has a 2GB file size limit, and IE 7 has a 4GB file size limit. TRy downloading files using other browser like firefox Jenny Hii wrote: > > hey, > I try to download apache-ant-1.6.5

Re: Ant 1.7 doesn't like antcall with inheritrefs

2008-12-17 Thread Mitch Gitman
Disregard this post. Turns out in the Ant target called by *antcall*, I was using refid below, not torefid: In other words, my mistake. And that warning was what was catching it. This is one case where I'm happy to be embarrassed. On Wed, Dec 17, 2008 at 8:41 PM, Mitch Gitman wr

Ant 1.7 doesn't like antcall with inheritrefs

2008-12-17 Thread Mitch Gitman
I'm familiar with this warning in Ant 1.7: Warning: Reference *reference_name* has not been set at runtime, but was found during build file parsing, attempting to resolve. Future versions of Ant may support referencing ids defined in non-executed targets. But now suppose that the target in which t

Re: Passing multi-byte strings from ANT using task

2008-12-17 Thread Mark Salter
Shashidhar Kotta wrote: > We are using “–Dfile.encoding=UTF8” jvm args and now we are able to > pass multi-byte strings from ANT to Java and even from the cmd to > java also. > > But in our case we have string which has the characters from > different regions. That's why when we set the system to

Re: calling a build file from another

2008-12-17 Thread glenn opdycke-hansen
Subant is another option. http://ant.apache.org/manual/CoreTasks/subant.html I just did a restructure of an Ant script and did some research in this. I ended up splitting up the large ant script and used import task --glenn

RE: calling a build file from another

2008-12-17 Thread Rez
Thanks, I didn't even given a 2nd thought on clicking on that command, thinking it's supposed to be used at the command line only. Duh. That's what I needed, thanks again.> Date: Wed, 17 Dec 2008 12:05:52 +0530> From: sra...@yahoo.co.in> To: user@ant.apache.org> Subject: Re: calling a build fi

Re: AntX: $map example from guide fails when key is missing?

2008-12-17 Thread Sagi Mann
Hi, I was unable to get your script to work. the echo message was literally showing the $prop URI. the script: ${key}: p1='${$prop:p1->@(key)}' the output: prop1: p1='${$prop:p1->@(key)}' so I'm still stuck :-) any ideas? thanks... -- View this message in context: http:

Re: Sending html email but the html is not seen in my mail client

2008-12-17 Thread Paul Taylor
Rebhan, Gilbert wrote: try Ah schollboy error, thats it messagemimetype="text/html" thanks Paul - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

RE: Sending html email but the html is not seen in my mail client

2008-12-17 Thread Rebhan, Gilbert
-Original Message- From: Paul Taylor [mailto:paul_t...@fastmail.fm] Sent: Wednesday, December 17, 2008 1:29 PM To: Ant Users List Subject: Sending html email but the html is not seen in my mail client /* Hi, this is my task the email is sent okay, but when I open the received e

Re: "Failed to read input from Console" Error invoking ant from java class

2008-12-17 Thread Michael Sobremonte
Hi Thanks for the input Mark. After some researching I found the same issue logged as a bug here: https://issues.apache.org/bugzilla/show_bug.cgi?id=42544 Quick Solution: I used the DefaultInputHandler from apache-ant-1.6.5 http://ant.apache.org/manual/CoreTasks/input.html http://ant.apache.or

Does Ant supports JUnitCore Interface of JUnit4.0

2008-12-17 Thread Rajesh Gottapu
Hi, I would like to ask three questions: 1. I am working on JUnit 4.0 which has JUnitCore Interface. when i try to run the JUnit testcase with JUnitCore implementation using ant task i am getting the following error: No Runnable methods error May i know what could resolve my problem.

Sending html email but the html is not seen in my mail client

2008-12-17 Thread Paul Taylor
Hi, this is my task password="xx" mailport="25" subject="test" messagemimetype="mime/html" messagefile="C:\code\jthink\jaikozannounce.html" encoding="mime"> the email is sent okay, but when I open the received email in Thunderbird the message is empty, however if I look at the e

Re: calling a build file from another

2008-12-17 Thread Shaaf Syed M
My bad, understood it incorrectly. Thanks. On Wed, Dec 17, 2008 at 10:33 AM, Ramu Sethu wrote: > I believe antcall is for calling another target in the same build > > On Wed, Dec 17, 2008 at 2:26 PM, Shaaf Syed M wrote: > > > this might be of help too. > > > > http://ant.apache.org/manual/Core

RE: Passing multi-byte strings from ANT using task

2008-12-17 Thread Shashidhar Kotta
Hi All, Thanks for all your inputs. We are half-way through. We are using “–Dfile.encoding=UTF8” jvm args and now we are able to pass multi-byte strings from ANT to Java and even from the cmd to java also. This works when we set the system to a particular region and send the multi-byte charact

Re: calling a build file from another

2008-12-17 Thread Ramu Sethu
I believe antcall is for calling another target in the same build On Wed, Dec 17, 2008 at 2:26 PM, Shaaf Syed M wrote: > this might be of help too. > > http://ant.apache.org/manual/CoreTasks/antcall.html > > > > On Wed, Dec 17, 2008 at 12:38 AM, Rez wrote: > > > > > Hi > > Not sure why I got a

Re: calling a build file from another

2008-12-17 Thread Shaaf Syed M
this might be of help too. http://ant.apache.org/manual/CoreTasks/antcall.html On Wed, Dec 17, 2008 at 12:38 AM, Rez wrote: > > Hi > Not sure why I got a mailer daemon posting to Ant user group?! > > Is it possible to call one ant file (build.xml) from another project's > buil=d.xml?currently