RE: EJB helpers...

2003-03-11 Thread Ciramella, EJ
I'm using ant 1.5.2, and now I understand that it's not my fault. What's the word on the fix or error (I may be able to fix it)? -Original Message- From: Casey Daniell [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 12:14 PM To: 'Ant Users List' Subject: RE: EJB helpers... Are

RE: EJB helpers...

2003-03-11 Thread Casey Daniell
Are you using winzip to view your jar files? If so there is a bug in ANT 1.5.1 that you can't see the contents of jars when using winzip. Try upgrading to ANT 1.5.2 or using a nightly build. Casey -Original Message- From: Ciramella, EJ [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 20

RE: task depends on file changes...

2003-03-11 Thread Dominique Devienne
See and/or in Ant proper. See also which was discussed very recently on [EMAIL PROTECTED] and was just committed to Ant-contrib's (on sf.net) CVS HEAD. Finally, see also submitted to Ant's BugZilla DB which you might want to adapt to work with Castor instead of Jaxb. --DD -Original Message

Re: task depends on file changes...

2003-03-11 Thread Stefan Bodewig
On 11 Mar 2003, Pedro Salazar <[EMAIL PROTECTED]> wrote: > I would like to know if is it possible make the execution of a task > depends on the changes of a specific non java file, XML for > instance? Set a property with and put your task into a target that has an unless attribute referencing th

RE: EJB helpers...

2003-03-11 Thread Ciramella, EJ
That's what I thought, bummer. My other option is to list all the ejbs and make a task that uses against another xml file, once for each ejb utilizing the jar or zip task - but I haven't had much luck with either. The resulting jar file says it's 14kb but when I open it, it doesn't have anythin

RE: Tricky JSP precompilation mapping

2003-03-11 Thread Dominique Devienne
Thanks for getting that straight ;-) I still encourage everyone to vote for that bug. Here the URL again: http://nagoya.apache.org/bugzilla/showvotes.cgi?voteon=17199 Thanks, --DD -Original Message- From: peter reilly [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 10:08 AM To

Re: Tricky JSP precompilation mapping

2003-03-11 Thread peter reilly
One can write a custom mapper without modifing ant. It is custom conditions that one cannot have - and the fact that syntax for custom filters, mappers and conditions are different from build-in fiters, mappers and conditions - this is addressed by 17199. Peter On Tuesday 11 March 2003 15:40, D

AW: EJB helpers...

2003-03-11 Thread Jan . Materne
How many jars do you want to have? One per EJB or one for all EJBs? One for all: The must get all Helper classes, because they are needed. One per EJB: I think you have to define a fileset for each EJB. Because you have to write one for each bean. And there you have to choose the beanname: My