Maven set dependency mediation strategy to newest rather than nearest
Can I configure Maven to choose the "newest" dependency on a conflict, rather than the "nearest"?
The "newest" is the default in Ivy and other sensible dependency managers, see http://ant.apache.org/ivy/history/2.2.0/settings/conflict-managers.html
I find the "nearest" strategy is rarely what I want.
I'm using Maven 3.3.3, but I can switch versions if necessary.
I know how to override Maven's choice on individual conflicts, but I'd prefer to change the default so that I don't have to detect and fix each conflict one at a time.
(See the Maven docs on "Dependency mediation")
Can I configure Maven to automatically use the "newest" version of a dependency instead of the "nearest" when resolving version conflicts?
No , you cannot configure Maven's dependency mediation strategy to anything other than nearest.
Adding configurable dependency mediation strategies has been proposed before, but was ultimately abandoned because the proposal involved changing the POM XSD, which has not happened in years.
Why does Maven use the nearest strategy as a default?
The strategy of nearest is favored by Maven for two reasons:
But I really want a different dependency mediation strategy. What can I do?
These are your best options:
NearestVersionSelector
in MavenRepositorySystemUtils
. You could create your own Maven extension that defines your own VersionSelector
that implements the strategy of your choice, then in the afterSessionStart
method of your extension, replace the session's DependencyGraphTransformer
with one that uses your custom VersionSelector
. You can also use the "requireUpperBoundDeps" rule for the Maven "enforcer" plugin, which will not directly implement a "newest wins" conflict resolution policy, but will enforce that the end result is the same. You will need to manually add transitive dependency <exclusions>
or <dependencyManagement>
rules to your POM to choose the newest dependency in each conflict, but at least you will then have confidence that the end result is "newest wins".
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version>
<executions>
<execution>
<id>enforce</id>
<configuration>
<rules>
<requireUpperBoundDeps />
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
链接地址: http://www.djcxy.com/p/31078.html
上一篇: C中三个值的有效平均值