Re: Different behavior of Maven 2 and 3 on Flat Projekt Layout

2010-04-28 Thread Marshall Schor
I've taken an approach which separates parents and aggregates. I've put all my parents into one eclipse project, each with a folder naming the parent, and in that folder, a pom.xml; this is of course a "flat" structure. These I then "mvn install" into my local repo, and/or deploy. I'm following

RE: Different behavior of Maven 2 and 3 on Flat Projekt Layout

2010-04-27 Thread subir.sasikumar
You need to add a for parent elements. Its mandatory in Maven 3. Add those and your builds should work. And you can always see other issues about compatibility by googling. Subir -Original Message- From: Robert Einsle [mailto:rob...@einsle.de] Sent: Tuesday, April 27, 2010 12:59 PM To:

Re: Different behavior of Maven 2 and 3 on Flat Projekt Layout

2010-04-27 Thread Thomas Scheffler
Am 27.04.2010 09:28, schrieb Robert Einsle: Hy List, lets assume i have 3 Projects: xx.yy.app.parent xx.yy.app.module1 xx.yy.app.module2 .parent is Parent of both modules Hi, even though maven 2 supports it - kind of, I really suggest to have any aggregation and parent definition in the pa