maven jelly tag and build.properties properties

2004-01-14 Thread Ebersole, Steven
How is it possible to reference a property defined in one of the maven properties files (specifically the ~/build.properties) in one of the maven jelly tags? The tag I am trying to use is maven:makeRelativePath/. What I have tried so far is: 1) maven:makeRelativePath var=testDest

Re: maven jelly tag and build.properties properties

2004-01-14 Thread Gilles Dodinet
Ebersole, Steven wrote: How is it possible to reference a property defined in one of the maven properties files (specifically the ~/build.properties) in one of the maven jelly tags? The tag I am trying to use is maven:makeRelativePath/. What I have tried so far is: 1) maven:makeRelativePath

RE: maven jelly tag and build.properties properties

2004-01-14 Thread Ebersole, Steven
Same error message. Tried using a bunch of different plugin contexts (test, java, idea)... -Original Message- From: Gilles Dodinet [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 14, 2004 1:43 PM To: Maven Users List Subject: Re: maven jelly tag and build.properties properties

Re: maven jelly tag and build.properties properties

2004-01-14 Thread Jake Ewerdt
- From: Gilles Dodinet [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 14, 2004 1:43 PM To: Maven Users List Subject: Re: maven jelly tag and build.properties properties Ebersole, Steven wrote: How is it possible to reference a property defined in one of the maven properties files

Re: maven jelly tag and build.properties properties

2004-01-14 Thread Gilles Dodinet
Ebersole, Steven wrote: Same error message. Tried using a bunch of different plugin contexts (test, java, idea)... do you import the test context by declaring the 'test' namespace ? this works for me : ant:echo xmlns:mytest=testm.t.d =

RE: maven jelly tag and build.properties properties

2004-01-14 Thread Ebersole, Steven
but this works for me even without the namespacing: ant:echm.t.d = ${maven.test.dest}/ant:echo -Original Message- From: Gilles Dodinet [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 14, 2004 2:51 PM To: Maven Users List Subject: Re: maven jelly tag and build.properties properties

Re: maven jelly tag and build.properties properties

2004-01-14 Thread Gilles Dodinet
Ebersole, Steven wrote: but this works for me even without the namespacing: ant:echm.t.d = ${maven.test.dest}/ant:echo uh ! right.. it works when it is defined in the properties file.. i forgot your original question.. my bad -- gd

RE: maven jelly tag and build.properties properties

2004-01-14 Thread Ebersole, Steven
: Wednesday, January 14, 2004 3:11 PM To: Maven Users List Subject: Re: maven jelly tag and build.properties properties Ebersole, Steven wrote: but this works for me even without the namespacing: ant:echm.t.d = ${maven.test.dest}/ant:echo uh ! right.. it works when it is defined in the properties file

Re: maven jelly tag and build.properties properties

2004-01-14 Thread Gilles Dodinet
Ebersole, Steven wrote: actually, my bad. it does not work. it is maven.build.dest that works, not maven.test.dest heres my understanding of it, i may be wrong - correct me if am : maven.build.dest should always be available (core behavorial property), maven.test.dest is being made

RE: maven jelly tag and build.properties properties

2004-01-14 Thread Ebersole, Steven
PROTECTED] Sent: Wednesday, January 14, 2004 4:56 PM To: Maven Users List Subject: Re: maven jelly tag and build.properties properties Ebersole, Steven wrote: actually, my bad. it does not work. it is maven.build.dest that works, not maven.test.dest heres my understanding of it, i may be wrong

RE: maven jelly tag and build.properties properties

2004-01-14 Thread Ebersole, Steven
: maven jelly tag and build.properties properties Thanks for the help. What I did was to simply (re?)define it in the specific plugin.properties file to be its defined default using maven.test.dest=${maven.build.dir}/test-classes, and everything started working. Woohoo... -Original Message

Re: maven jelly tag and build.properties properties

2004-01-14 Thread Jason van Zyl
On Wed, 2004-01-14 at 17:55, Gilles Dodinet wrote: Ebersole, Steven wrote: actually, my bad. it does not work. it is maven.build.dest that works, not maven.test.dest heres my understanding of it, i may be wrong - correct me if am : maven.build.dest should always be available