RE: dependency should use not

2004-07-08 Thread STRAYER, JON (SBCSI)
> For those that use the multiproject plugin - how do you typically > develop? Do you make tweaks to the "core" module and then > "install" it > before working on your "web" project? Sort of. When I check in code to my "core" project, Cruise Control checks it out, builds it, and installs it i

RE: dependency should use not

2004-07-07 Thread Carlos Sanchez
07, 2004 11:12 PM > To: Maven Users List > Subject: Re: dependency should use not > > I'm basically developing a sample app to show folks how to > use Maven's multiproject capabilities - so whatever "best > practice" advice you have > - I'd like to inc

Re: dependency should use not

2004-07-07 Thread Jefferson K. French
On Wed, 07 Jul 2004, at 15:12:03 [GMT -0600] Matt Raible wrote: > For those that use the multiproject plugin - how do you typically > develop? Do you make tweaks to the "core" module and then "install" it > before working on your "web" project? Yes. Individual developers will run multiproject:i

Re: dependency should use not

2004-07-07 Thread Jason van Zyl
On Wed, 2004-07-07 at 17:12, Matt Raible wrote: > For those that use the multiproject plugin - how do you typically > develop? Do you make tweaks to the "core" module and then "install" it > before working on your "web" project? Yes. There is no way in maven1 to use a dependent JAR in situ, y

Re: dependency should use not

2004-07-07 Thread matthew.hawthorne
Matt Raible wrote: For those that use the multiproject plugin - how do you typically develop? Do you make tweaks to the "core" module and then "install" it before working on your "web" project? I usually do this: maven multiproject:clean multiproject:install I'm not a big fan of snapshots, espec

Re: dependency should use not

2004-07-07 Thread Craig S . Cottingham
On Jul 7, 2004, at 16:12, Matt Raible wrote: For those that use the multiproject plugin - how do you typically develop? Do you make tweaks to the "core" module and then "install" it before working on your "web" project? Yes, mostly. I don't use multiproject as much as I used to, because I now h

RE: dependency should use not

2004-07-07 Thread Ryan Sonnek
h, especially if the code is > > changing frequently. > > > >> -Original Message- > >> From: Matt Raible [mailto:[EMAIL PROTECTED] > >> Sent: Wednesday, July 07, 2004 3:48 PM > >> To: Maven Users List > >> Subject: Re: dependency should

Re: dependency should use not

2004-07-07 Thread Jefferson K. French
Matt, If I understand what you're trying to do, you could setup your own external repository and deploy your jars there. Then add your repository to the maven.repo.remote property in your project.properties file. Then Maven would check your repo for the core jar file when it processes the webapp p

Re: dependency should use not

2004-07-07 Thread Matt Raible
pull down the newest jars from there. might want to change your dependencies to rely on SNAPSHOT though, especially if the code is changing frequently. -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 3:48 PM To: Maven Users List Subject: Re:

RE: dependency should use not

2004-07-07 Thread Ryan Sonnek
[EMAIL PROTECTED] > Sent: Wednesday, July 07, 2004 3:48 PM > To: Maven Users List > Subject: Re: dependency should use not > > > So you're basically saying that there's no way that users can > download > my sample and type "maven multiproject"? They

Re: dependency should use not

2004-07-07 Thread Matt Raible
So you're basically saying that there's no way that users can download my sample and type "maven multiproject"? They have to do "multiproject:install" first. I can accept that, but it sure would be cool if I could somehow do that for them. Matt On Jul 7, 2004, at 2:32 PM, Jefferson K. French

Re: dependency should use not

2004-07-07 Thread Jefferson K. French
Maven is looking for the dependency in your local repo, so you need to make sure the current version of core gets installed in your repo. Try something like this: maven multiproject:install multiproject:site Jeff On Wed, 07 Jul 2004, at 14:08:32 [GMT -0600] Matt Raible wrote: > In regards to:

RE: dependency should use not

2004-07-07 Thread Matt Raible
In regards to: http://www.mail-archive.com/[EMAIL PROTECTED]/msg10392.html I have a multiproject setup with core, web and root as advised by http://wiki.codehaus.org/maven/CreatingJ2eeApplications. My "core" project builds a jar fine but my web project can't seem to find it. In web/project.xml,