Re: How to fail if property expansion failed...

2010-10-22 Thread Gilbert Rebhan
Original Message Subject: Re: How to fail if property expansion failed... From: mattf To: dev@ant.apache.org Date: 22.10.2010 23:39 > > I was hoping to avoid introducing additional requirements, such as antcontrib > or Ivy. [..] > Yes, sort of; a library property is a list of

Re: AW: How to fail if property expansion failed...

2010-10-22 Thread mattf
I was hoping to avoid introducing additional requirements, such as antcontrib or Ivy.The list is a merge of two files, one global property list of libs that have names that dereference to a list of jars (produced and managed by an external program); and one local -- just part of that name. These a

Re: [PATCH] ant-core/docs/manual/tutorial-writing-tasks.html

2010-10-22 Thread Stefan Bodewig
Thanks Kevin, I've committed the patch as it was but not updated the site, yet. In your section about getting the project you may want to mention that getProject is only available to task that (maybe via Task) inherit from ProjectComponent. Any other task can provide a void setProject(Project) m

Re: [PATCH] ant-core/docs/manual/tutorial-writing-tasks.html

2010-10-22 Thread Stefan Bodewig
Hi Kevin, On 2010-10-20, Kevin Connor Arpe wrote: > I am using instructions from here: > http://www.apache.org/dev/contributors.html#patches > This developer list has no specifics about sending patches. - well hidden, I know 8-) > Please let

Re: Import Bushel into Ivy

2010-10-22 Thread Nicolas Lalevée
Since there is no objection, I have started to prepare the import. I have prepared the code to be imported and attached it here: https://issues.apache.org/jira/browse/IVY-1241 The code is just a zip of the svn branch here: https://bushel.googlecode.com/svn/branches/apache-import/ When I was pre

Re: svn commit: r1026276 - /ant/core/trunk/check.xml

2010-10-22 Thread Stefan Bodewig
On 2010-10-22, wrote: > Can't easily switch Checkstyle 5.0 because of CS-Error "TreeWalker is > not allowed as a parent of Header" I went through this for Cactus (to make Cactus build in Gump). You have to make a few tweaks to the checkstyle configuration when upgrading[1], but the changes I ha

AW: How to fail if property expansion failed...

2010-10-22 Thread Jan Matèrne
Ok, after searching for the perl map function this is what I understand: - you have defined a list of libraries (@classpath) which you require - you want to fail if one of these libs is missing Simply I would define a list (comma separated or one-per-line) and iterate with antcontrib:for.