exec

2011-12-02 Thread ext-simon.steiner
Hi, Shouldn’t ant offer a

RE: ant -v

2011-04-19 Thread ext-simon.steiner
Hi, If I call 1, why is it printing info about 2 by default, how does 2 affect 1?: ant 1 -v Complete build sequence is [1, 2, ] Thanks -Original Message- From: ext Michael Ludwig [mailto:mil...@gmx.de] Sent: 19 April 2011 19:45 To: Ant Users List Subject: Re: ant -v ext-simon.ste

ant -v

2011-04-19 Thread ext-simon.steiner
Hi, If I run ant -v it prints every target defined which is massive, can I hide that in verbose mode? Complete build sequence is [...] Thanks - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e

RE: antcall

2010-10-25 Thread ext-simon.steiner
ant test-1 > -Original Message- > From: ext Jonathan Rosenberg [mailto:j...@tabbysplace.org] > Sent: 25 October 2010 16:45 > To: 'Ant Users List' > Subject: RE: antcall > > How are you "calling" test-1? > > -- > Jonathan Rosenberg > Founder & Executive Director, Tabby's Place > http://ww

antcall

2010-10-25 Thread ext-simon.steiner
Hi, How come if I call test-1, test-3 doesn't print ref2? ${toString:ref1} Thanks - To unsubscribe, e-m

scriptcondition

2009-10-12 Thread ext-simon.steiner
Hi, How can I write a scriptcondition macro? Eg. Thanks

runtarget failing

2009-09-21 Thread ext-simon.steiner
Hi, Runtarget seems to sometimes fail when using parallel: Other than using antcall is there a fix? BUILD FAILED Desktop\build.xml:11: java.lang.NullPointerException java.lang.NullPointerException Could not create task of type: echo java.lang.NullPointerException

ssh vs scp

2009-06-16 Thread ext-simon.steiner
Hi, It would be better if these tasks were consistant. SCP has: passphrase Passphrase for your private key.Yes, if you are using key based authentication. SSH has: passphrase Passphrase for your private key.No, defaults to an empty string. http://ant.apache.org/manua

RE: scriptmapper doesn't support the "setbeans" attribute

2009-06-09 Thread ext-simon.steiner
Hi, I have ant 1.7.1 and bsf, its just the "setbeans" attribute. Thanks > -Original Message- > From: ext Martin Gainty [mailto:mgai...@hotmail.com] > Sent: 09 June 2009 15:22 > To: Ant Users List > Subject: RE: scriptmapper doesn't support the "setbeans" attribute > > > Toivottavasti!

scriptmapper doesn't support the "setbeans" attribute

2009-06-09 Thread ext-simon.steiner
Hi, I get 'scriptmapper doesn't support the "setbeans" attribute' It says it does here: http://ant.apache.org/manual/CoreTypes/mapper.html print 'hi' Th

RE: AntUnit

2009-01-28 Thread ext-simon.steiner
Hi, The listener needs to know what targets are being executed so having the log output is no help. Thanks > -Original Message- > From: ext Stefan Bodewig [mailto:bode...@apache.org] > Sent: 28 January 2009 16:16 > To: user@ant.apache.org > Subject: Re: AntUnit > > On 2009-01-28, wrote

RE: AntUnit

2009-01-28 Thread ext-simon.steiner
Hi, We are testing something that requires the listener to be running. Listeners don't seem to run when calling antunit or . Thanks > -Original Message- > From: ext Stefan Bodewig [mailto:bode...@apache.org] > Sent: 28 January 2009 13:29 > To: user@ant.apache.org > Subject: Re: AntUnit

RE: AntUnit

2009-01-28 Thread ext-simon.steiner
Hi, I mean a class implementing org.apache.tools.ant.BuildListener Thanks > -Original Message- > From: ext jan.mate...@rzf.fin-nrw.de [mailto:jan.mate...@rzf.fin-nrw.de] > Sent: 28 January 2009 12:22 > To: user@ant.apache.org > Subject: AW: AntUnit > > >> How can I run antunit with custo

AntUnit

2009-01-27 Thread ext-simon.steiner
Hi, How can I run antunit with custom ant listeners enabled? Thanks - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

RE: Find a properties location

2008-11-26 Thread ext-simon.steiner
Hi, Also how can I get a list of all ant files? We use this but this only includes files with targets not ones with only properties. Map targets = project.getTargets(); Iterator targetsIter = targets.values().iterator(); while (targetsIter.hasNext()) { Target target = (Target) targetsIter.next(

RE: Find a properties location

2008-11-12 Thread ext-simon.steiner
Hi, I not looking for the value of the property but where in the configuration it is defined. The org.apache.tools.ant.Target class has a method: getLocation(), can I get the same sort of thing for properties. Thanks > -Original Message- > From: ext [EMAIL PROTECTED] [mailto:[EMAIL PR

Find a properties location

2008-11-12 Thread ext-simon.steiner
Hi, How can I find out where a property is defined, which ant file? I would like: project.getProperty("helium.dir").file() or: project.getProperty("helium.dir").location() Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] F

Ant project on network

2008-10-21 Thread ext-simon.steiner
Hi, Our ant project and jars are on a network drive, if the network is slow this can cause the ant build to stop. What can we do about this other than run locally? [taskdef] Could not load definitions from resource net/sf/antcontrib/antlib.xml. It could not be found. [taskdef] Could not load d

is broken with Jython in 1.7.1

2008-10-07 Thread ext-simon.steiner
Hi, I am getting this with error with 1.7.1 and not with 1.7.0. Calling just self.xxx doesn't cause problems. There was a similar issue, I've included below. SyntaxError: ('invalid syntax', ('', 2, 13, "errorsTotal = project.getPr operty('build.errors.total')")) errorsTotal

is broken with Jython in 1.7.1

2008-09-22 Thread ext-simon.steiner
Hi, I am getting this with error with 1.7.1 and not with 1.7.0. Calling just self.xxx doesn't cause problems. There was a similar issue, I've included below. SyntaxError: ('invalid syntax', ('', 2, 13, "errorsTotal = project.getPr operty('build.errors.total')")) errorsTotal

Support mutliple if and unless

2008-08-06 Thread ext-simon.steiner
Hi, Can ant support multiple if and unless. I would rather not need to use ant-contrib for this. These will infact look for a property called "x,y": Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: gunzip

2008-06-27 Thread ext-simon.steiner
Hi, I have two zips and many gzips, bunzip2 and untar seem ok also, only gunzip is a problem. Thanks -Original Message- From: ext Matt Benson [mailto:[EMAIL PROTECTED] Sent: 26 June 2008 22:07 To: Ant Users List Subject: Re: gunzip --- [EMAIL PROTECTED] wrote: > Hi, > > This works

gunzip

2008-06-26 Thread ext-simon.steiner
Hi, This works: This doesn't, why not? I get "only single argument resource collections are supported as archives" Thanks

RE: Is it possible to run a target for each file in a fileset?

2008-06-24 Thread ext-simon.steiner
Hi, We do something like this: Thanks -Original Message- From: ext Karr, David [mailto:[EMAIL PROTECTED] Sent: 24 June 2008 16:39 To: Ant Users List Sub

[patch] typedef error when using #

2008-06-11 Thread ext-simon.steiner
Hi, Patch is: --- Definer.java.orgWed Jun 11 16:24:17 2008 +++ Definer.javaWed Jun 11 17:05:15 2008 @@ -331,7 +331,7 @@ } try { if (message == null) { -return file.toURL(); +return file.toURI().toURL(); }

[patch] typedef error when using #

2008-06-11 Thread ext-simon.steiner
Hi, Error occurs on 1.7 and 1.7.1 beta2. If I define a typedef with a # in the path ant won't run. I have included a patch and have not created an error, is this a known issue or already fixed? BUILD FAILED C:\USERS\helium\helium-dev-forbuilds#\helium\build.xml:15: The following error o ccurr

RE: sshexec problem

2008-01-02 Thread ext-simon.steiner
Hi, Can I get the environment that putty gives in a portable way. Such as calling some commands when logged in to switch. Am I right in thinking that /etc/profile is not called for sshexec which is the main problem. Sshexec gives me a TERM=dumb and Putty TERM=xterm. Thanks __

sshexec problem

2008-01-02 Thread ext-simon.steiner
Hi, I am using sshexec to connect to a unix machine, I see difference in the environment ('export'ed values) when using this compared to logging in with Putty. Why would this be? Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED