Problem Manipulating a Jar File -- P.S.

2005-03-01 Thread D Sledge
Just a little more info on the problem; ant has no problem reading the file or creating some.jar.sig from it, so I checked the permissions on the file and made sure I had read and write permissions on the file. Any light that can be shed on the problem would be appreciated. Thanks, D Sledge

Problem Manipulating a Jar File

2005-03-01 Thread D Sledge
First the basics: Ant v1.6.2 JRE v1.4.2_01 OS Windows XP Next the build file: Now, the problem: I get an error anytime I try to manipulate the file "some.jar". When I run the signjar task, I get the following output: sign: [signjar] Signing JAR:

Re: using mappers

2004-11-02 Thread D Sledge
Found the culprit! Don't use the "dir" and "file" attributes simultaneously in the element. Change it to: and all is well in the realm of D Sledge. Thanks a million for your help! D Sledge __ Do y

Re: using mappers

2004-11-02 Thread D Sledge
--- Matt Benson <[EMAIL PROTECTED]> wrote: > I created a self-contained buildfile to test this and > have noticed a problem when I ran ant with debug > logging. You should be using a merge mapper for this > example; the glob mapper isn't behaving as you expect > when you specify from with ONLY "*"

Re: using mappers

2004-11-02 Thread D Sledge
--- Matt Benson <[EMAIL PROTECTED]> wrote: > --- D Sledge <[EMAIL PROTECTED]> wrote: > > It might be good to show what I have so far: > > > > > > > > > > > > > > > > &g

Re: using mappers

2004-11-02 Thread D Sledge
--- Matt Benson <[EMAIL PROTECTED]> wrote: > --- D Sledge <[EMAIL PROTECTED]> wrote: > > File A is the source file for files X, Y, and Z. > > How do I set up my uptodate element so that it > > checks to see if X, Y, and Z are up to date? I've > > t

Re: using mappers

2004-11-02 Thread D Sledge
--- Matt Benson <[EMAIL PROTECTED]> wrote: > --- D Sledge <[EMAIL PROTECTED]> wrote: > > File A is the source file for files X, Y, and Z. > > How do I set up my uptodate element so that it > > checks to see if X, Y, and Z are up to date? I've > > t

using mappers

2004-11-01 Thread D Sledge
Here's the scenario: File A is the source file for files X, Y, and Z. How do I set up my uptodate element so that it checks to see if X, Y, and Z are up to date? I've tried using a composite mapper, but ant keeps telling me that doesn't support a nested composite mapper. Thanks, D