作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我在项目中包含 CXF 3.3.6
implementation(group: 'org.apache.cxf', name: 'cxf-rt-transports-http-jetty', version: "3.3.6")
使用依赖项任务,我们看到它还会引入 jetty-server:9.4.27.v20200227
+--- org.apache.cxf:cxf-rt-transports-http-jetty:3.3.6
| +--- org.apache.cxf:cxf-core:3.3.6 (*)
| +--- org.apache.cxf:cxf-rt-transports-http:3.3.6 (*)
| +--- org.eclipse.jetty:jetty-server:9.4.27.v20200227
现在我想将 jetty-servlet 添加到项目中:
implementation(group: 'org.eclipse.jetty', name: 'jetty-servlet', version: 'XYZ!?!')
有没有一种方便的方法来强制jetty-servlet
依赖项与CXF引入的jetty-server
传递依赖项的版本相匹配?
最佳答案
如果依赖项具有相同的版本,那么您可以使用自定义 dependency resolution rule :
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'org.eclipse.jetty') {
details.useVersion "9.4.27.v20200227"
details.because "Align all Eclipse Jetty dependencies to same version"
}
}
}
关于java - 强制库 B 的版本与库 A 的传递依赖项相匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62020346/
我是一名优秀的程序员,十分优秀!