RE: Ant Task: < Zip>

2005-06-07 Thread David Resnick
This was fixed in versions 1.6.3 and later. -Original Message- From: S I [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 06:56 To: user@ant.apache.org Subject: Ant Task: < Zip> Hi I've created some empty sub-directories (/output; nested 4 levels down) that are essential to the

RE: How to include an empty folder in a ZIP file

2005-06-07 Thread David Resnick
This was fixed in versions 1.6.3 and later. -Original Message- From: John Zoetebier [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 08, 2005 07:38 To: user@ant.apache.org Subject: How to include an empty folder in a ZIP file I have noticed that an empty folder is excluded from a ZIP file

How to include an empty folder in a ZIP file

2005-06-07 Thread John Zoetebier
I have noticed that an empty folder is excluded from a ZIP file. Is it possible to include an empty folder in a ZIP file ? -- John Zoetebier http://www.transparent.co.nz - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

Ant Task: < Zip>

2005-06-07 Thread S I
Hi I've created some empty sub-directories (/output; nested 4 levels down) that are essential to the final product being shipped however, the zip task is not including and skipping them... /> Is it my includes attrib? I can't figure this out. Thanks Steven

RE: FW: Connection Failures On SSHExec Task

2005-06-07 Thread Anderson, Rob (Global Trade)
It appears that the commands execute on the remote machine, just the output is not displayed after the first connection. I know this because I changed the commands to touch a new file with each connection and it worked as expected. I will look at the code and hopefully find the problem. -Rob A

Re: ZipException on javac task moving from jdk1.4 to jdk1.5

2005-06-07 Thread Peter Reilly
Peter Reilly wrote: This should be a FAQ! You have a .class file in your class path (i.e. not a directory or a .jar file). Starting with ant 1.6, ant will open the files in the classpath checking for manifest entries. This attempted opening will fail with the error "java.util.zip.ZipException

Re: ZipException on javac task moving from jdk1.4 to jdk1.5

2005-06-07 Thread Peter Reilly
This should be a FAQ! You have a .class file in your class path (i.e. not a directory or a .jar file). Starting with ant 1.6, ant will open the files in the classpath checking for manifest entries. This attempted opening will fail with the error "java.util.zip.ZipException" The problem does not

Re: cvschangelog for Subversion?

2005-06-07 Thread Stefan Bodewig
On Tue, 7 Jun 2005, Henri Yandell <[EMAIL PROTECTED]> wrote: > An issue hit in looking to move Jakarta Cactus to SVN is that it > uses the for part of its site. has a changelog task, more help is welcome. > Anyone know if there'

Re: How to execute a build.xml inside another build.xml ?

2005-06-07 Thread Jeffrey E Care
Even a *cursory* examination of the manual would reveal that you can use the or tasks for this purpose. -- Jeffrey E. Care ([EMAIL PROTECTED]) WebSphere Build SWAT Team Lead WebSphere Build Tooling Lead (Project Mantis) https://w3.opensource.ibm.com/projects/mantis [EMAIL PROTECTED] wrote on

Re: How to execute a build.xml inside another build.xml ?

2005-06-07 Thread Brad G. Kyer
Quite Easy... -B --- [EMAIL PROTECTED] wrote: > All, > > I Just wanna execute "Build.xml " inside another file named > "MasterBuild.xml" > > Kindly tell me ,what is the exact task name ? > > Thanks 'n' Advance, > Venkat. > > This transmission may cont

How to execute a build.xml inside another build.xml ?

2005-06-07 Thread venkatesan_gandhi
All, I Just wanna execute "Build.xml " inside another file named "MasterBuild.xml" Kindly tell me ,what is the exact task name ? Thanks 'n' Advance, Venkat. This transmission may contain information that is privileged, confidential and/or exempt from disclosure under applicable law. If you a

Urgent Help - JBOSS startup and shutdown scripts

2005-06-07 Thread Srikrishna_Parthasarathy
The following script start and stops JBOSS . But the target jboss.start is successful before the server is actually started. Is there a way to make the target Successful only when it is actually started . Eager to receive the newgroup comments.

cvschangelog for Subversion?

2005-06-07 Thread Henri Yandell
An issue hit in looking to move Jakarta Cactus to SVN is that it uses the for part of its site. Anyone know if there's an easy replacement for svn that doesn't involve an external tasks jar? Hen - To unsubscribe, e-mail: [EMAIL

Re: ZipException on javac task moving from jdk1.4 to jdk1.5

2005-06-07 Thread Stefan Bodewig
On Tue, 7 Jun 2005, Fabricio M. Sanchez <[EMAIL PROTECTED]> wrote: > After deleting all classes and compiling using the javac task > (target name is compile, see code below), I then compile the source > again. The first time I compile (using 'ant compile')it builds > successfully. When I compile

Re: ZipException on javac task moving from jdk1.4 to jdk1.5

2005-06-07 Thread Maurice Feskanich
Don't know if this will help, but I've seen some strange exceptions moving from jdk 1.4.x to 1.5.x if the JAVA_HOME env var doesn't point to the same jdk version as the compiler used by the javac task. Make sure things are in sync. If nothing else, it will rule this out as the cause. Maury Fab

Re: custom selector which examines multiple files before returning an answer

2005-06-07 Thread Frode E. Moe
On Tue, Jun 07, 2005 at 08:05:51 -0700, Matt Benson wrote: > In Ant 1.7 you will be able to do this (...) > Unfortunately this doesn't help you particularly now, (...) No problem, thanks for the quick answer - which saved me some time searching the ant 1.6.x source for something which wouldn't b

Re: custom selector which examines multiple files before returning an answer

2005-06-07 Thread Matt Benson
--- Matt Benson <[EMAIL PROTECTED]> wrote: > - restrict the sorted collection to the first > returned > (mental note on my part to write a > resourceselector) and store as reference "bar". Actually, after thinking about this, will not be a resource selector for use with the collection; will me

Re: custom selector which examines multiple files before returning an answer

2005-06-07 Thread Matt Benson
(excuse the top-post) In Ant 1.7 you will be able to do this using ResourceCollections which include the ability to sort as well as select. The correct approach would then be very like what you are proposing: - select files matching the specified name, store as reference "foo". - reverse-sort "f

custom selector which examines multiple files before returning an answer

2005-06-07 Thread Frode E. Moe
Hi, I'm trying to implement a way to detect duplicate .jar files (where only the version differ) and delete all duplicates except the newest. The way I hoped to implement this was to use the task together with a custom Selector, like this: Unfortunately this doesn't seem to

ZipException on javac task moving from jdk1.4 to jdk1.5

2005-06-07 Thread Fabricio M. Sanchez
Hi there, I've searched google, ant-faq and ant-manual and found nothing conclusive... I have recently moved from java (jdk) 1.4.2 to 1.5.0_03. I'm using ant 1.6.1 (I've tried ant 1.6.5 also, but the problem still exists) After deleting all classes and compiling using the javac task (target name