[ANN] maven deptools plugin 1.1 released

2010-11-02 Thread Morten Kjetland
Version 1.1 of maven deptools plugin now supports maven 3 and the maven enforcer plugin maven deptools plugin ...gives build error if maven resolves transient dependencies in such a way that the none-newest version is chosen. This plugin has turned out to be very useful in the

Re: Best Practices Question: Teams working on different modules / SCM, etc

2010-05-24 Thread Morten Kjetland
Hi, The situation you describe look very similar to ours. We use the maven release plugin. but we had problems with versions: warA has dep to jarB version 1 which has dep to jarC version1 warA has also dep to JarD version 1 which has dep to jarC version 2. when warA is build, only version 1

Re: Is there a way to disable transitive dependencies?

2010-05-18 Thread Morten Kjetland
Hi, If you decide to include the transient dependencies, a plugin called deptools can help you detect when wrong dependency-versions are chosen. You can have a look at it here: http://github.com/mbknor/deptools http://github.com/mbknor/deptoolsRegards, Morten On Tue, May 18, 2010 at 2:42 PM,

Re: Dependency Management +

2010-04-27 Thread Morten Kjetland
We use a plugin called deptools to automatically fail the build if a maven chooses a dependency that is older than the version some other dependency requires it to be.. Have a look at it here: http://github.com/mbknor/deptools -Morten On Mon, Apr 26, 2010 at 6:12 PM, Nick Stolwijk

[ANN] maven deptools plugin 1.0-RC4-SNAPSHOT released

2010-04-21 Thread Morten Kjetland
Hi all, I've created a maven plugin that ...gives build error if maven resolves transient dependencies in such a way that the none-newest version is chosen. This plugin has turned out to be very useful in the company I work for. I would appreciate any feedback about the plugin. The plugin can