Re: An example of a plugin that uses the as an actual live classpath ...

2011-06-17 Thread Benson Margulies
t; strub > > --- On Fri, 6/17/11, Jörg Schaible wrote: > >> From: Jörg Schaible >> Subject: Re: An example of a plugin that uses the as an >> actual live classpath ... >> To: users@maven.apache.org >> Date: Friday, June 17, 2011, 7:27 AM >> Benson Mar

Re: An example of a plugin that uses the as an actual live classpath ...

2011-06-17 Thread Mark Struberg
shell invocation? LieGrue, strub --- On Fri, 6/17/11, Jörg Schaible wrote: > From: Jörg Schaible > Subject: Re: An example of a plugin that uses the as an > actual live classpath ... > To: users@maven.apache.org > Date: Friday, June 17, 2011, 7:27 AM > Benson Margulies wr

Re: An example of a plugin that uses the as an actual live classpath ...

2011-06-17 Thread Jörg Schaible
Benson Margulies wrote: > I find myself looking to create a plugin where, as part of execution, > it wants to create a classpath composed of the declared dependencies. > Can anyone suggest a model? Not sure, which plugin I used to look this up, but I had once the need to scan the compiled classe

RE: An example of a plugin that uses the as an actual live classpath ...

2011-06-15 Thread Martin Gainty
; Date: Wed, 15 Jun 2011 11:37:51 -0400 > Subject: Re: An example of a plugin that uses the as an > actual live classpath ... > From: bimargul...@gmail.com > To: users@maven.apache.org > > Why? It just wants to construct a list of jars and pass them to the > compiler, not ac

Re: An example of a plugin that uses the as an actual live classpath ...

2011-06-15 Thread Benson Margulies
Point taken. On Wed, Jun 15, 2011 at 11:40 AM, Stephen Connolly wrote: > Beware...you cause subtle break in maven if you rely on them being jars. > > if they have gone only as far as the compile phase in the lifecycle > then they will not be jars but instead > ${project.build.outputDirectory}s fo

Re: An example of a plugin that uses the as an actual live classpath ...

2011-06-15 Thread Stephen Connolly
Beware...you cause subtle break in maven if you rely on them being jars. if they have gone only as far as the compile phase in the lifecycle then they will not be jars but instead ${project.build.outputDirectory}s for each of the dependencies... The very best Maven Way plugins respect that differ

Re: An example of a plugin that uses the as an actual live classpath ...

2011-06-15 Thread Benson Margulies
Why? It just wants to construct a list of jars and pass them to the compiler, not actually include them in a classloader. Not that's it is especially hard to get from one to the other. On Wed, Jun 15, 2011 at 11:12 AM, Jochen Wiedmann wrote: > The maven-compiler-plugin should do exactly that. > >

Re: An example of a plugin that uses the as an actual live classpath ...

2011-06-15 Thread Mark Struberg
: > From: Benson Margulies > Subject: An example of a plugin that uses the as an actual > live classpath ... > To: "Maven Users List" > Date: Wednesday, June 15, 2011, 3:09 PM > I find myself looking to create a > plugin where, as part of execution, > it wants

Re: An example of a plugin that uses the as an actual live classpath ...

2011-06-15 Thread Jochen Wiedmann
The maven-compiler-plugin should do exactly that. On Wed, Jun 15, 2011 at 5:09 PM, Benson Margulies wrote: > I find myself looking to create a plugin where, as part of execution, > it wants to create a classpath composed of the declared dependencies. > Can anyone suggest a model? > >

An example of a plugin that uses the as an actual live classpath ...

2011-06-15 Thread Benson Margulies
I find myself looking to create a plugin where, as part of execution, it wants to create a classpath composed of the declared dependencies. Can anyone suggest a model? - To unsubscribe, e-mail: users-unsubscr...@maven.apache.org F