AW: Ant property ant.java.version how does Ant detect this property?

2008-03-16 Thread Jan.Materne
Ant retrieves all system properties - means all properties System.getProperties() returns. http://ant.apache.org/manual/using.html#built-in-props "Ant provides access to all system properties ... For a list of system properties see the Javadoc of System.getProperties." Jan > -Ursp

AW: ant property not set question

2007-04-18 Thread Jan.Materne
I think Rob means, that you could delete all your is.dev.home occurences and just using env.IS_DEV_HOME. If you want to define that in a propery file just use env.IS_DEV_HOME=someValue It's "just" a normal property ... But personally I prefer using different properties. So you are free to do mor

AW: ant property not set question

2007-04-16 Thread Jan.Materne
This works for me: '${is.dev.home}' Jan >-Ursprüngliche Nachricht- >Von: Dominique Devienne [mailto:[EMAIL PROTECTED] >Gesendet: Freitag, 13. April 2007 23:18 >An: Ant Users List >Betreff: Re: ant property not set question >

AW: Ant Property Task - Environment Variables

2006-12-20 Thread Jan.Materne
In the source ;-) [1] --> Property.java [2] execute() --> Property.loadEnvironment(String) --> Execute.getProcEnvironment() [3] --> Execute.getProcEnvCommand() ==> os/2 cmd /c set windows - win9xcommand.com /c set - othercmd /c set z/os /bin/env OR /usr/b

Re: AW: ant property

2005-02-25 Thread Jeffrey E Care
"Ant Users List" To Ant Users List cc Subject Re: AW: ant property Why not to use a custom ANT build? - Alexey. Douglas Kramer wrote: > > Wish I could, but my application (MIF Doclet) currently overrides > classes in tools.jar, so that's not an option. I must

Re: AW: ant property

2005-02-25 Thread Alexey N. Solofnenko
Why not to use a custom ANT build? - Alexey. Douglas Kramer wrote: Wish I could, but my application (MIF Doclet) currently overrides classes in tools.jar, so that's not an option. I must be able to set the classpath to MIFDoclet.class ahead of tools.jar (which is ${run.classpath.javadoc}). Later,

Re: AW: ant property

2005-02-25 Thread Douglas Kramer
James Fuller wrote: Douglas Kramer wrote: I'd like to set up my Ant script to load one set of paths if I'm building on one machine and a different set of paths when building on a another machine. this can be achieved in a variety of ways; Good, thanks. In build.properties I have: run.classpath.java

Re: AW: ant property

2005-02-25 Thread James Fuller
Douglas Kramer wrote: I'd like to set up my Ant script to load one set of paths if I'm building on one machine and a different set of paths when building on a another machine. this can be achieved in a variety of ways; In build.properties I have: run.classpath.javadoc="${JAVA_HOME}/lib/tools.jar" r

Re: AW: ant property

2005-02-25 Thread Douglas Kramer
I'd like to set up my Ant script to load one set of paths if I'm building on one machine and a different set of paths when building on a another machine. In build.properties I have: run.classpath.javadoc="${JAVA_HOME}/lib/tools.jar" run.classpath.mifdoclet="${WORKDIR}/build/jar/mifdoclet.jar" My sc

AW: ant property

2005-02-25 Thread Jan . Materne
You can use the task of AntContrib or using