RE: Compiling Multiple Source Trees

2005-10-11 Thread Allison, Bob
Trying to go down path #1 right now... I have a plugin mojo which is basically a copy of CompilerMojo, but with a couple parameters (like source and output directories) adjusted so I can specify them in the plugin configuration. Everything compiles fine but when I try to use the plugin I get a NP

RE: Compiling Multiple Source Trees

2005-10-11 Thread Allison, Bob
I am trying to avoid having an extra 20 or 30 projects, each with one or two classes in them. -Original Message- From: Jay H. Hartley [mailto:[EMAIL PROTECTED] Sent: Monday, October 10, 2005 19:41 To: 'Maven Users List' Subject: RE: Compiling Multiple Source Trees Alternative

RE: Compiling Multiple Source Trees

2005-10-11 Thread Allison, Bob
Multiple Source Trees Are these classes used in your test cases? If so, I think the simplest solution would be to put them in "src/test/java". Test classes are not put in your final distribution/jars. On 10/11/05, Allison, Bob <[EMAIL PROTECTED]> wrote: > > I would like

RE: Compiling Multiple Source Trees

2005-10-10 Thread Jay H. Hartley
5 3:35 PM To: Maven Users List Subject: Re: Compiling Multiple Source Trees Are these classes used in your test cases? If so, I think the simplest solution would be to put them in "src/test/java". Test classes are not put in your final distribution/jars. On 10/11/05, Allison, Bob <

Re: Compiling Multiple Source Trees

2005-10-10 Thread Arik Kfir
Are these classes used in your test cases? If so, I think the simplest solution would be to put them in "src/test/java". Test classes are not put in your final distribution/jars. On 10/11/05, Allison, Bob <[EMAIL PROTECTED]> wrote: > > I would like to set things up in a project to compile a set o