Our company has defined a number of "best practices" with regard to Maven poms. For example, specifying utf-8 for resource processing, which folders to do filtering on, handling unit tests vs integration tests, and compiler settings.

Right now, these best practices are documented on our company wiki, but when the list of "best practices" changes, these changes are rarely reflected in the project poms, until there is a problem. Human nature being what it is and all....

Is there some way we can provide/enforce these settings and properties via Maven? It's almost like giving every project a parent pom.xml, but I don't want (and can't) have all these projects reference the same parent pom.

We need an approach that will work on developer's machines as well as our Hudson CI server.

link|improve this question

I read that "porn.xml" in the other font. ☺ – tchrist Nov 11 '10 at 14:51
feedback

4 Answers

up vote 3 down vote accepted

The only maven solution is a common parent. Perhaps if you used a 'released' parent you could do it?

Make a project containing only the parent pom, and run the release plugin, publishing it to your internal repository. Then use that parent as the parent of all your projects, having them download it from your repo instead of finding it by relative pathname?

link|improve this answer
If I understand correctly, wouldn't I then have to change the directory structure for all existing projects? Also, I am thinking this may wreak havoc on our release process. But this suggestion did give me the idea of at least keeping a partial pom.xml under source control.... – HDave Nov 11 '10 at 15:03
1  
No change to directories AT ALL. A parent doesn't have to have a file system tree relationship. It can just be an artifact fetched from a repository. – bmargulies Nov 11 '10 at 15:46
I did what you suggested and it worked GREAT. Thanks so much. Besides the directory mental-block I also had the (long-time) misconception that any pom.xml that referenced a parent pom had to be named as a module within that parent pom -- that is, parents and children had to be bi-directionally associative. – HDave Nov 11 '10 at 21:08
That bi-directionality assumption is encouraged by various peripheral aspects of the maven doc. – bmargulies Nov 12 '10 at 0:36
feedback

You may build maven project archetype with settings that fulfill your company's best practices. It is rather 'provide' than 'enforce' solution and possibly may be not enough (depending on what those best practices really are). http://maven.apache.org/guides/mini/guide-creating-archetypes.html

link|improve this answer
This is a good idea, the archetype could actually reference my new standardized parent pom...and set up the SCM URL's correctly for the maven-release-plugin. – HDave Nov 12 '10 at 14:47
feedback

It's almost like giving every project a parent pom.xml, but I don't want (and can't) have all these projects reference the same parent pom.

I'm not saying to necessarily put everything in a parent POM but in a corporate environment, it's really a good idea to have a top-level corporate POM (as illustrated in the section 3.6.2.2. Multi-module Enterprise Project of the maven book), with its own release cycle.

But this won't be enough to enforce anything and my suggestion would be to look at the Maven Enforcer Plugin that offers existing rules but also allows to write your own custom rules using the maven-enforcer-rule-api. I can't comment how far you can go with custom rules though. Anyway, I highly recommend this plugin. If you're not using it yet, it's definitely time to start :)

link|improve this answer
Will do...thanks. – HDave Nov 11 '10 at 21:09
feedback

Without a master pom, there's no technological way to enforce what you ask for (and nor would every project cope with it well in the first place). The only effective way to keep best practices enforced as they evolve over time is by making it someone's job to do the enforcing. You could spread it across many people (e.g., by adding it to their job descriptions) but that tends to leave it getting forgotten because everyone will assume that someone else is doing it. One person, identified by name, and there will be no buck-passing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.