Is it possible to include several smaller pom files to create the parent pom file. (e.g. I would like to split the reporting, build sections into their own poms and include them in the parent pom) for managing them effectively
|
If you are using Maven 2, you can simply create several parent levels. The first You can create as many parent levels as you want (of course, it will be harder to maintain if you have 5 parent levels). Note that Maven 3 will introduce the mixin concept, which will allow you to fragment your |
|||||||||||||||||
|
|
Not quite. You can't include reporting and build sections defined in smaller POMs, you can only inherit them from a parent POM.
These groups can then be included in your main POM. |
|||
|
|