RE: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-25 Thread Jamie Whitehouse
Users List Subject: Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works? > My adversion to running 'mvn clean install' is just that I'd prefer > not to have to build and install something just to be able to examine its dependencies. Thi

Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-24 Thread Wayne Fay
> My adversion to running 'mvn clean install' is just that I'd prefer not to > have > to build and install something just to be able to examine its dependencies. This is merely a preference, right? > under various 3rd party dependency scenarios. It seems backwards to me to have > to first build

Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-24 Thread Jonathan Gold
t; From: Jonathan Gold [mailto:jgold...@gmail.com] > Sent: Friday, November 20, 2009 4:26 PM > To: users@maven.apache.org > Subject: Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works? > > Brian -- > > Thanks for this. I did run the combo

RE: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-20 Thread Jamie Whitehouse
Many of the dependency plugin goals are reactor aware, but dependency:tree > > isn't.  I'm not too sure why, but you could search the issue tracker and if > > there's no issue for this file one. > > > > -Original Message- > > From: Jonathan Gold [mailt

Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-20 Thread Jonathan Gold
#x27;t.  I'm not too sure why, but you could search the issue tracker and if > > there's no issue for this file one. > > > > -Original Message- > > From: Jonathan Gold [mailto:jgold...@gmail.com] > > Sent: Thursday, November 19, 2009 3:00 PM > >

Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-20 Thread Brian Fox
x27;s own, in it's own sub module (e.g. >> c:\maven-repro1\mod_b> mvn compile ), you'll get the same error about not >> being able to resolve dependencies. >> >> Hope that helps. >> Jamie. >> >> -Original Message- >> From: Jonathan G

RE: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-19 Thread Jamie Whitehouse
ay, November 19, 2009 3:00 PM To: users@maven.apache.org Subject: Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works? Jamie -- Thanks for trying it out, and for the explanation. This makes sense in terms of why things are happening, so that's nice. I&#

Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-19 Thread Jonathan Gold
7;s own sub module (e.g. > c:\maven-repro1\mod_b> mvn compile ), you'll get the same error about not > being able to resolve dependencies. > > Hope that helps. > Jamie. > > -Original Message----- > From: Jonathan Gold [mailto:jgold...@gmail.com] > Sent:

RE: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-19 Thread Jamie Whitehouse
repro1\mod_b> mvn compile ), you'll get the same error about not being able to resolve dependencies. Hope that helps. Jamie. -Original Message- From: Jonathan Gold [mailto:jgold...@gmail.com] Sent: Thursday, November 19, 2009 12:52 PM To: users@maven.apache.org Subject: Re: Why w

Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-18 Thread Brian Fox
This is not related. The dependency plugin has some issues resolving things from the reactor and ranges in the following goals only: copy unpack go-offline resolve-plugins All the other goals set @requiresDependencyResolution test which will cause Maven to resolve all dependencies prior to the pl

Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-18 Thread Jonathan Gold
Jamie -- Thanks for the response. I don't have mod_d depending on a snapshot -- just on the sibling module itself. Also, I'm not installing versions in the local repo at the point I'm seeing this problem (and would rather not, actually, since it's just for development anyway). If mod_d was depend

RE: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-18 Thread Jamie Whitehouse
AFAIK dependency tree does not run in the reactor. Is mod_d depending on a SNAPSHOT version of mod_c? Do you have that version installed in your local repo? I have used dependency tree many time on a large mutli-module project so I can attest that it does work in some form. -Original Messa

Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-18 Thread Stevo Slavić
You could try to install your project first, and after that run dependency:tree. Regards, Stevo. On Wed, Nov 18, 2009 at 7:05 PM, Jonathan Gold wrote: > Thanks for the response. In fact, I have all of my modules listed in > depdendency > order in the parent pom, so it's quite odd indeed. > > Th

Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-18 Thread Jonathan Gold
Thanks for the response. In fact, I have all of my modules listed in depdendency order in the parent pom, so it's quite odd indeed. Thanks for the tip -- I voted for the bug, for what it's worth. jon On Wed, Nov 18, 2009 at 06:59:41PM +0100, Stevo Slavić wrote: > Likely because dependency plugin

Re: Why would 'mvn dependencies:tree' fail while 'mvn compile' works?

2009-11-18 Thread Stevo Slavić
Likely because dependency plugin has bugs, and I'm suspecting that your issue is similar/related to this one already reported. But it's odd that it doesn't fail for you at module mod_c, as build reactor should have ordered mod_c to be built/processed befor