RE: build.properties Question

2010-03-29 Thread Philip Wilder
List Subject: Re: build.properties Question On 26/03/2010, Philip Wilder wrote: > Thanks Wayne, > > The nature of my problem is that I am attempting to integrate two > different builds processes with the first build generating a > properties file to modify the second maven bui

RE: build.properties Question

2010-03-29 Thread Philip Wilder
List Subject: Re: build.properties Question On 29 March 2010 02:40, sebb wrote: > On 26/03/2010, Philip Wilder wrote: > > Thanks Wayne, > > > > The nature of my problem is that I am attempting to integrate two > > different builds processes with the first build gener

Re: build.properties Question

2010-03-28 Thread Stephen Connolly
ephen > > > > Philip > > > > > > -Original Message- > > From: Wayne Fay [mailto:wayne...@gmail.com] > > Sent: Thursday, March 25, 2010 5:54 PM > > To: Maven Users List > > Subject: Re: build.properties Question > > > &g

Re: build.properties Question

2010-03-28 Thread sebb
> > Philip > > > -Original Message- > From: Wayne Fay [mailto:wayne...@gmail.com] > Sent: Thursday, March 25, 2010 5:54 PM > To: Maven Users List > Subject: Re: build.properties Question > > > that functionality was lost in Maven 1. Can anyone tell m

RE: build.properties Question

2010-03-26 Thread Philip Wilder
particular users environment. Philip -Original Message- From: Wayne Fay [mailto:wayne...@gmail.com] Sent: Thursday, March 25, 2010 5:54 PM To: Maven Users List Subject: Re: build.properties Question > that functionality was lost in Maven 1. Can anyone tell me why this > functiona

RE: build.properties Question

2010-03-25 Thread subir.sasikumar
AM To: users@maven.apache.org Subject: build.properties Question Hello all, I have been doing some research to determine if it is possible to load a set of properties from a normal java properties file. The impression I am getting it that it might be but only through a relatively obscure plugin

Re: build.properties Question

2010-03-25 Thread Wayne Fay
> that functionality was lost in Maven 1. Can anyone tell me why this > functionality was removed or, better yet, if there is a flag to turn it > back on? There is no flag, and I can't imagine one will be added. Maven simply does not use properties files. If you must use properties files, then you

Re: build.properties Question

2010-03-25 Thread Manfred Moser
You are correct. The recommended way is to use the property tag in pom.,xml, settings.xml and within profiles and so on. This is a much more powerful mechanism with built in inheritance, overloading, activation and so on. If you still insist on using external .properties file the plugin you mentio

build.properties Question

2010-03-25 Thread Philip Wilder
Hello all, I have been doing some research to determine if it is possible to load a set of properties from a normal java properties file. The impression I am getting it that it might be but only through a relatively obscure plugin (http://mvnrepository.com/artifact/org.sonatype.plugins/maven-prope

Re: build.properties question: how get environment variable values?

2005-05-11 Thread Brett Porter
Ant has a way to retrieve them, which you could do in maven.xml, but I'd suggest avoiding the need wherever possible. Cheers, Brett On 5/12/05, Mark D. Hansen <[EMAIL PROTECTED]> wrote: > I've got this in my build.properties (running in linux): > > was.home=$WAS_HOME > > It does not give the de

build.properties question: how get environment variable values?

2005-05-11 Thread Mark D. Hansen
I've got this in my build.properties (running in linux): was.home=$WAS_HOME It does not give the desired result. Instead of setting was.home to 'opt/IBM/WebSphere/AppServer', it sets was.home to '$WAS_HOME'. How do I get the value of a shell environment variable inside of maven? Thanks!