RE: Dereferencing property files

2009-12-04 Thread Dalton, Tom
I have implemented the suggestion on the FAQ of using a macrodef task to do the double dereference (in 1.7.1) and it works perfectly, so thank you all for the help. I am still surprised it's not a standard built-in task though... Cheers, Tom -

Re: making Sphinx4 apps with Ant

2009-12-04 Thread johnyjj2
May I have your answer, please? -- View this message in context: http://old.nabble.com/making-Sphinx4-apps-with-Ant-tp26553582p26651847.html Sent from the Ant - Users mailing list archive at Nabble.com. - To unsubscribe, e-mai

AW: Compile with java 1.5_0.17 run junit tests with 1.6_14

2009-12-04 Thread Knuplesch, Juergen
Yes, in junit task there is a attribut called jvm="${dope.junittest.jvm2}" -- Jürgen Knupleschwww.icongmbh.de icon Systemhaus GmbHTel. +49 711 806098-275 Sophienstraße 40 D-70178 Stuttgart Fax. +49 711 80

AW: Dereferencing property files

2009-12-04 Thread Jan.Materne
Not sure about 1.7.1 - havent tried it. But with trunk ;-) Jan >-Ursprüngliche Nachricht- >Von: Rebhan, Gilbert [mailto:gilbert.reb...@huk-coburg.de] >Gesendet: Freitag, 4. Dezember 2009 10:02 >An: 'Ant Users List' >Betreff: RE: Dereferencing property files > > > >-Original Message-

Re: Compile with java 1.5_0.17 run junit tests with 1.6_14

2009-12-04 Thread Stephen Connolly
yes there is... but I am not an ant expert. Another technique is to compile with a 1.6 JVM and set target and source to 1.5 and then use animal-sniffer-ant-tasks to verify that your compiled classes only reference the signatures available in java 1.5.0_17 HTH -Stephen 2009/12/4 florin.botis >

Compile with java 1.5_0.17 run junit tests with 1.6_14

2009-12-04 Thread florin.botis
Hello, I have a build.xml file which contains different tasks for compiling and running the junit tests. I need to know if there is a way to compile the source code with the java 1.5_17 and the run the junit under a 1.6 JVM. Thanks in advance, Florin -- View this message in context: h

RE: Dereferencing property files

2009-12-04 Thread Rebhan, Gilbert
-Original Message- From: jan.mate...@rzf.fin-nrw.de [mailto:jan.mate...@rzf.fin-nrw.de] Sent: Friday, December 04, 2009 9:55 AM To: user@ant.apache.org Subject: AW: Dereferencing property files /* AFAIK this AC:task is available for Ant earlier 1.6. With Core: I am not up to date with

AW: Dereferencing property files

2009-12-04 Thread Jan.Materne
AFAIK this AC:task is available for Ant earlier 1.6. With Core: I am not up to date with all the property evaluators now in core. You could plugin your own evaluator and do something like ${myown:name}, so maybe a ${nested:atk-${atk.version}.exported.base.dir} would be possible. Or more nested $

RE: Dereferencing property files

2009-12-04 Thread Rebhan, Gilbert
-Original Message- From: Dalton, Tom [mailto:tdal...@hp.com] Sent: Thursday, December 03, 2009 5:38 PM To: Ant Users List Subject: RE: Dereferencing property files /* Jan, Thanks - that is exactly what I need... I'm sorry I did not see that sooner! Is there any chance of this propert