Re: Avoiding situations where duplicate classnames are imported?

2015-01-20 Thread Curtis Rueden
Hi Kevin, The main situation I see is when the artifact and group ID differ … The Maven Enforcer Plugin is the first party plugin solution. The rule you want, banDuplicateClasses, is part of the Mojo project's Extra Enforcer Rules:

Re: Avoiding situations where duplicate classnames are imported?

2015-01-20 Thread Jason van Zyl
The plugin Steven mentioned works better than anything I've seen for finding duplicates. All the Maven plugins that came originally from Ning and moved into Basepom are of good quality. It's not often I say something is good. On Jan 20, 2015, at 8:19 AM, Curtis Rueden ctrue...@wisc.edu wrote:

Re: Avoiding situations where duplicate classnames are imported?

2015-01-20 Thread Doug Douglass
On Mon, Jan 19, 2015 at 1:24 AM, Kevin Burton bur...@spinn3r.com wrote: The main situation I see is when the artifact and group ID differ … so an older version of jdom used just jdom and the newer version used org.jdom and then I ended up with both :) Kevin, Specific to jdom, I don't