Certification in ANT.

2009-11-30 Thread Amit
Hi , I am interested in Apache ant tool. Is there certification course in apache ant. If yes please guide me on this. What are the course material. Where are the exam centers. Please provide me complete details regarding certification in ant. -- Thanks, Amit

[ANN] Animal Sniffer 1.4 Released

2009-11-30 Thread Stephen Connolly
The Mojo team is pleased to announce the release of Animal Sniffer version 1.4. This is the second release of Animal Sniffer (http://mojo.codehaus.org/animal-sniffer/) since it moved from java.net to the mojo project at codehaus. We have fixed a number of bugs (http://jira.codehaus.org/secure/Re

Re: ForTask throwing exception for same value for begin and end

2009-11-30 Thread Peter Reilly
Yes this is a bug in the ant-contrib 's for task (as usual I have forgot my password..) work-around: use step="-1" if begin and end are the same, and ensure that end >= begin. work-around-2: patch ant-conrib: svn co https://ant-contrib.svn.sourceforge.net/svnroot/ant-contrib/ant-contrib/trunk an

[ANT4HG] new release : V0.06

2009-11-30 Thread ant4hg
I'm glad to announce a new release of ant4hg, an ant task for hg (mercurial). It improves features : - hg clone - hg pull - hg push Please visit : http://ant4hg.free.fr All contributions and feedbacks are welcome. Best regards, Benjamin de Dardel ---

AW: ForTask throwing exception for same value for begin and end

2009-11-30 Thread Jan.Materne
i is @{i} With begin=end=1 you will get the error message build.xml:2: end <= begin, step needs to be < 0 So I see two possibilities: 1) the exceptional 1-jvm-case ... 2) NullObject Maybe your implementation c

ForTask throwing exception for same value for begin and end

2009-11-30 Thread Harry_
Hi, I am using ForTask for looping. The end attribute value comes from property. I am using it like The above code works fine. But when I make the value of JVMInstances as 1, then exception comes during the execution of this Ant file. Can Any one tell me if it is a known defect that fo