Hi Starrman, On Fri, Jun 11, 2010 at 11:03 AM, Starrman <[email protected]> wrote: > > Do you have any ideas how I could depend upon the classes during the compile > yet not pull in the web artifacts into myapp2? >
You're having problems because you aren't doing things The Maven Way. Just refactor your project such that the common code bits are in some new shared module that you create. Then have the myapp1 and myapp2 depend on the shared module. You might not like this solution because it lends towards module explosion (to the benefit of decreasing build complexity), but you've probably already wasted more time trying to hack through the system than just working with it... The Japanese have a great expression which basically says: the nail that sticks out gets hammered. :-) -Jesse -- There are 10 types of people in this world, those that can read binary and those that can not. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
