Ivy failing to parse .sha1 from maven central

2010-02-26 Thread Carlton Brown
Today we experienced a failure resolving commons-pool-1.4-sources.jar from Maven central due to a sha1 error.The sha1sum in the respository matches what Ivy computed, and also what I manually computed locally. We're trying to understand what happened. The only odd thing I find is that th

Re: Ant xmlproperty question

2010-02-26 Thread Gilbert Rebhan
Original Message Subject: Re: Ant xmlproperty question From: canadatom To: user@ant.apache.org Date: 26.02.2010 15:43 > > thanks for reply, I used xmlproperty, now I am trying to extract url from > psf.project.reference > > > http://blahblahblah1,desc1"/> > http://blahbl

Re: FTP task timing out

2010-02-26 Thread reno . rkcrew
Rhino, did you try with the passive option to yes? S. > I'm losing connections via the FTP task in Ant. I'm running Ant 1.7.1 in > Eclipse 3.5.1 (Galileo). I am running the Ant script directly from > within Eclipse, not from the command line. commons-net-2.0 and > jakarta-oro-2.0.8 are both visi

Re: AW: Jar and duplicate=preserve

2010-02-26 Thread Matt Benson
Sorry about that--per Stefan's email, it is duplicates="add" that has the behavior I described. :) -Matt On Feb 26, 2010, at 9:37 AM, Knuplesch, Juergen wrote: Hello, Thabks for the replies. I could now reproduce this behaviour under Windows, because I have now the environment copied fr

Re: Jar and duplicate=preserve

2010-02-26 Thread Stefan Bodewig
On 2010-02-26, Knuplesch, Juergen wrote: > I do the following to get some special files into a jarfile (Applet): > > > This means that if your fileset contains several files of the same name, only one would be added to your jar. I wouldn't hope that you've managed to have two files

FTP task timing out

2010-02-26 Thread Rhino
I'm losing connections via the FTP task in Ant. I'm running Ant 1.7.1 in Eclipse 3.5.1 (Galileo). I am running the Ant script directly from within Eclipse, not from the command line. commons-net-2.0 and jakarta-oro-2.0.8 are both visible to the FTP tasks. I am trying to access my personal webs

AW: Jar and duplicate=preserve

2010-02-26 Thread Knuplesch, Juergen
Hello, Thabks for the replies. I could now reproduce this behaviour under Windows, because I have now the environment copied from Linux to Windows. And it happened also!!! But I also had the correct (for me) behaviour tested today under other circumstances. I do not understand this and keep

Re: Jar and duplicate=preserve

2010-02-26 Thread Matt Benson
I think duplicate="preserve" actually implies that both entries are retained, per the ability of the format to handle this seemingly illogical situation. -Matt On Feb 26, 2010, at 9:21 AM, Antoine Levy Lambert wrote: Hello Juergen, my spontaneous answer is that duplicate="preserve" means

Re: Jar and duplicate=preserve

2010-02-26 Thread Antoine Levy Lambert
Hello Juergen, my spontaneous answer is that duplicate="preserve" means that if a jar/zip entry is encountered a second time, the original is preserved, the second instance is not used, and no error message is displayed. This might be in the documentation of the zip task. jar is an extension o

Re: AW: Ant xmlproperty question

2010-02-26 Thread canadatom
thanks for reply, I used xmlproperty, now I am trying to extract url from psf.project.reference http://blahblahblah1,desc1"/> http://blahblahblah2,desc2"/> http://blahblahblah3,desc3"/> ${url} The above code doesn't work prope

Re: StarTeam Task

2010-02-26 Thread Eric Fetzer
Figured it out.  I just had to stick the starteam104.jar into ant/lib. From: Eric Fetzer To: Ant Users Sent: Thu, February 25, 2010 4:11:55 PM Subject: Re: StarTeam Task The below error is using Ant 1.70.  With Ant 1.71, I get: C:\BuildDeployScripts\TestSTCh

Jar and duplicate=preserve

2010-02-26 Thread Knuplesch, Juergen
Hello, I do the following to get some special files into a jarfile (Applet): There are two files in in both filesets that are added to the jar file. Under Windows the first file is added to the jar in the first jar task and not changed with the second jar task. Under Lin

Re: Basic question re Antform and conditional execution of tasks

2010-02-26 Thread Rhino
Okay, the 'Omit_Optional_Partx' stuff works okay now that each of those targets are in the 'buildall'. Ant apparently considers running them but only actually executes the ones that should run, based on whether their checkbox was selected in the AntForm. However, there is still one BIG problem

RE:Ant (NaN in html report)‏

2010-02-26 Thread Riaz Ahmed
Hi, Use the build file http://svn.apache.org/repos/asf/jakarta/jmeter/trunk/extras/build.xml Include 1. xalan.jar 2. serializer.jar both in jmeter lib directory Regards R.A.M I am executing jmeter testplan via ant. The html report is showing everything except "Min Time & Max Time" as Na

Re: Basic question re Antform and conditional execution of tasks

2010-02-26 Thread Patrick Martin
Hello, Indeed, if your 'Omit_Optional_Partx' targets are not part of any depends attribute, they will not get called. You should probably have something like: ... ... ... ... ... Rgds, Patrick On Thu, Feb 25, 2010 at 6:43 PM, Rhino wrote: > Thank you, Patrick, for your helpful sugg