Re: How to use ${project.build.directory}?

2007-07-31 Thread Eric Redmond
I second Wendy's or Michael's suggestions - avoid system scope at all costs. Moreover, it may be removed in future versions of Maven, so don't depend on it being there forever. May as well make preperations now :) -- Eric Redmond http://blog.propellors.net On 7/30/07, Wendy Smoak <[EMAIL PROTECT

Re: How to use ${project.build.directory}?

2007-07-30 Thread Wendy Smoak
On 7/20/07, Tawfik, Sameh E <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using the following code: > > > connector > connector 1_0 > system > > ${Build_base}/ma-jdm-tck/lib/connector_1_0.jar > > > This code is working fine, but it requires everyone to define the > "Bui

Re: How to use ${project.build.directory}?

2007-07-30 Thread Dmitry
When we run maven JUnits - and ensure that testing is successful. - run mvn test but its through out exception and looks like it did not run properly JUnit in project. How the first step to check where is error in configuration / setting sof maven and fix this error thanks, DT www.ejinz.com S

RE: How to use ${project.build.directory}?

2007-07-25 Thread Joel COSTIGLIOLA (Services DPT SYSTEME D INFORMATION METIER)
n would work better, by using an in-house repository. Thanks, Sameh -Original Message- From: Michael Meyer [mailto:[EMAIL PROTECTED] Sent: Saturday, July 21, 2007 1:51 AM To: Maven Users List Subject: Re: How to use ${project.build.directory}? Hi, yes you can use maven prope

RE: How to use ${project.build.directory}?

2007-07-24 Thread Tawfik, Sameh E
n in-house repository. Thanks, Sameh -Original Message- From: Michael Meyer [mailto:[EMAIL PROTECTED] Sent: Saturday, July 21, 2007 1:51 AM To: Maven Users List Subject: Re: How to use ${project.build.directory}? Hi, yes you can use maven properties. This should do wha

Re: How to use ${project.build.directory}?

2007-07-21 Thread Michael Meyer
Hi, yes you can use maven properties. This should do what you want: connector connector 1_0 system ${basedir}/../ma-jdm-tck/lib/connector_1_0.jar But please don't do it! If you use a continuus integration tool like continuum or hudson they will try to build your modules individually.

RE: How to use ${project.build.directory}?

2007-07-20 Thread Tawfik, Sameh E
Hi, I'm using the following code: connector connector 1_0 system ${Build_base}/ma-jdm-tck/lib/connector_1_0.jar This code is working fine, but it requires everyone to define the "Build_base" system variable, so is there is another way, where I can reference th