Hey, Is it possible for a "parent" to effectively inject (or override) this section of a <module>'s pom.xml?
<parent> <groupId>com.acme</groupId> <artifactId>project-acme</artifactId> <verison>1.0.0-SNAPSHOT</version> </parent> This request might seem a little odd, so I will explain... We have a number of generated pom files (via a eclipse export). None of these "multi-module" pom's have a (common) parent. Consequently I can't easily run a shared configuration. Also, I would like to avoid editing each of the generated pom.xml files, because once we do another export our changes are lost. Thanks for reading :)
