Takari Maven Wrapper and Plugin

2017-04-21 Thread Manfred Moser
Hello all, We are pleased to announce a new release of the Maven Wrapper (0.2.1) and the Takari Maven Plugin (0.4.1) with the helping wrapper goal to install the Maven Wrapper in your project. The new release brings numerous changes that bring the wrapper up to using Maven 3.5.0, add support

Re: Maven Shell

2017-04-21 Thread Manfred Moser
jline3 integration is in the works right now. https://github.com/jdillon/gshell/pull/8 manfred Paul King wrote on 2017-04-20 16:08: > OK, cool. Is the jline3 integration likely before the final? > > Cheers, Paul. > > On Fri, Apr 21, 2017 at 8:05 AM, Manfred Moser

understanding maven version resolution: minor and snapshots

2017-04-21 Thread Jörg Wille
In a project 2 "different" versions of the same library A are used. One, as a direct dependency with a snapshot version *3.2.1-SNAPSHOT* and the same library - but with version *3.2.0* - is being used as a transient dependency in yet another library B. So, the 2 dependencies of A only differ in

Re: understanding maven version resolution: minor and snapshots

2017-04-21 Thread Curtis Rueden
Hi Jörg, As far as I know, Maven has no notion of "major" vs. "minor" vs. "patch" versions in the style of e.g. SemVer. It simply judges which version is the newest via its algorithm, and uses the newest, since it is assumed that a dependency on e.g. 3.2.0 means "version must be at least as new