- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我在我的 Gradle 配置中声明快照存储库时,有没有办法防止版本范围的传递依赖解析为 SNAPSHOT 版本?或者,我可以完全禁止传递依赖项中的版本范围吗?例如,考虑这个非常简单的 Gradle 项目:
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
apply plugin: "java"
dependencies {
compile "org.reactfx:reactfx:1.4"
compile "org.fxmisc.undo:undofx:1.0.1"
}
这将导致版本冲突和解决,因为 undofx
依赖于版本为 [1.4,1.5)
的 reactfx
(最新的 1.4 .x 版本可用)。以下是 reactfx
的依赖性洞察:
gradlew dependencyInsight --dependency reactfx
org.reactfx:reactfx:1.4.1-SNAPSHOT (conflict resolution)
org.reactfx:reactfx:1.4 -> 1.4.1-SNAPSHOT
\--- compile
org.reactfx:reactfx:[1.4,1.5) -> 1.4.1-SNAPSHOT
\--- org.fxmisc.undo:undofx:1.0.1
\--- compile
Maven 还将解析 reactfx:1.4.1-SNAPSHOT
作为 undofx
的依赖项。但是,一旦将 reactfx
依赖项添加到项目中,Maven 就会使用我声明为一级依赖项的版本来解决冲突。这是我用来测试它的 Maven POM:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>example</groupId>
<artifactId>example</artifactId>
<version>1.0-SNAPSHOT</version>
<repositories>
<repository>
<id>maven-central</id>
<url>http://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>oss-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.fxmisc.undo</groupId>
<artifactId>undofx</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.reactfx</groupId>
<artifactId>reactfx</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
</project>
这也是我对 Gradle 所期望的那种解析行为,但只是基于假设。我想如果 undofx
允许任何 1.4.x
版本的 reactfx
和唯一声明的 reactfx
版本落在那个范围,冲突将通过使用我声明的版本来解决。
但是,如果任何传递依赖项使用范围版本,我对冲突解决的兴趣不如构建失败。我更愿意识别这些依赖项并将它们设置为特定版本。如果我没有造成上述冲突,我认为我不会注意到这个使用版本范围。
使用版本范围识别和处理传递依赖性的最简单方法是什么?
根据 Peter 的回答,这里是我用来执行此操作的代码的完整列表。请注意,它正在使用标记为 @Incubating
的 Gradle API 功能。
import org.gradle.api.artifacts.component.ModuleComponentSelector
if(!project.plugins.hasPlugin(JavaPlugin)) {
apply plugin: "java"
}
repositories {
mavenCentral()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
compile "org.fxmisc.undo:undofx:1.0.1" // depends on reactfx:[1.4,1.5)
}
configurations {
//noinspection GroovyAssignabilityCheck
all {
/*
Once the dependencies in all configurations are resolved check the
version of all module (not project) components that were resolved
successfully. Modules already using a forced version will be skipped.
*/
incoming.afterResolve { // ResolvableDependencies
it.resolutionResult.allDependencies { // DependencyResult
if(it instanceof ResolvedDependencyResult
&& it.requested instanceof ModuleComponentSelector) {
if(!it.selected.selectionReason.forced) {
checkVersion((ModuleComponentSelector) it.requested)
}
}
}
}
}
}
/**
* Check the version of the requested module and throw and exception if it's
* using a version range.
*
* @param requested The module component to check.
*/
void checkVersion(ModuleComponentSelector requested) {
def version = requested.version
if(version.endsWith(")")
|| version.equals("LATEST")
|| version.equals("RELEASE")) {
throw new GradleException(
"${requested} uses a version range. Try force.")
}
}
最佳答案
您可以使用 configuration.getIncoming()
API 比较声明的版本和已解析的版本(例如,在 configuration.getIncoming().afterResolve()
Hook 中),以及如果它们不相同则失败。要获得“声明的版本获胜”(而不是 Gradle 的“最高版本获胜”)的 Maven 冲突解决行为,您可以使用 configuration.getResolutionStrategy().force()
API。要强制明确解决每个版本冲突(使用 force()
),请使用 configuration.getResolutionStrategy().failOnVersionConflict()
。有关 API 详细信息,请参阅 Gradle Build Language Reference .
关于Gradle:有没有办法禁止传递依赖项中的版本范围?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26190313/
我正在尝试使用 npmpublish 命令发布包。但我每次都会收到此错误。 npm ERR! code E403 npm ERR! 403 Forbidden - PUT https://regist
我在 WAMP 上访问我的本地主机(最后是 phpmyadmin)时遇到问题。 当我输入 localhost或 http://127.0.0.1进入我的浏览器,我收到以下消息: Forbidden Y
我正在尝试发送 $ajax,并且我已经得到了它,但是我必须使用我的表单发送文件,无论是否相同,都没关系。尚未找到 csrf token ,并且出现错误。 我的 JavaScript $(doc
我有一个奇怪的问题,我试图使用请求模块废弃某些页面,但这样做时我收到 403 访问被拒绝。但我完全能够使用 Node 的curl 模块来完成此操作。但互联网上的人们认为,它比请求模块更需要性能,因为我
所以,我正在制作一个公共(public)的不和谐机器人,但我的脚本的一部分有问题。我的 kick/ban 命令是用来完成的 $ban @user 它必须在 ping 中完成。由于这是公开的,我真的很想
我在负载均衡器后面有 2 个服务器。此 LB 上配置了 SSL。将近 50 个不同的客户端能够成功连接到我的网站,除了 1 个客户端从浏览器收到禁止 (403) 消息。 经过一番调查,我发现他在代理服
1、禁止计算局部梯度 torch.autogard.no_grad: 禁用梯度计算的上下文管理器。 当确定不会调用Tensor.backward()计算梯度时,设置禁止计算梯度会减少内存消耗。
如果 Moose 的构造函数调用中有额外的参数不是属性,有没有办法死?例如,这个: package Shoe; use Moose; has 'size' => (is => 'ro', isa =
在服务器上,安装了 Nginx。 Let's Encrypt 在 www.domain.com 上运行良好,但不适用于 static.domain.com 使用 PuTTY,当我输入时:sudo le
我使用 emacs 来编辑所有内容。在我的一些 LateX 文档中,我想在编辑表格和代码时自动禁用自动填充模式。基本上,我想要两个标签,例如: %%% BEGIN NO FILL %%%
通过 Nuget,我将 WindowsAzure.Storage 升级到 8.1.1。 然后,我下载了 AzureStorageEmulator 5.1.0.0 客户端。 我的连接字符串: UseDe
Qt documentation说,信号的返回值是不可能的: Signals are automatically generated by the moc and must not be implem
编辑版本 我有一个关于 GPG 的问题,但我写了所有的过程,也许它会对某人有所帮助。 我想:禁止 GPG 命令中的密码提示。 我不想:使用 -c 选项(--对称)。 我有 2 个系统 Linux 和
现在的想法是这样的:在 Java 中为 octalIntegerLiteral我有一个规则 octalNumeral, (integerTypeSuffix optional) 但我想得到一个数字作为
我在 Python 项目中所有模块的开头使用以下内容: import setup_loggers setup_loggers是一个可以做到这一点的模块。 import语句确保无论首先加载哪个模块,记录
我刚刚下载了最新版本的 XAMPP,PHP 版本为 7.2.4。我为 HTML 表单做了一个非常简单的 PHP 验证,当我按下提交时,它会出现以下内容: Access forbidden!You do
我已经成功运行 Vagrant 大约一个星期了。昨晚我运行了 vagrant reload,现在我无法再访问我的网站。 VirtualBox 版本 4.2.16 Vagrant 版本 1.2.7 我的
我使用以下 JavaScript 代码在完成 ajax 后播放音频: $(document).ready(function () { $.ajaxSetup(
我有一个似乎可以在互联网上运行的应用程序。但我接到了一位最终用户的电话,他在使用website时遇到困难。 我要求她发送控制台错误的屏幕截图并收到以下信息: 从 stackoverflow 搜索来看,
我在尝试提交到 svn 存储库时遇到此错误: svn: MKACTIVITY of '/svn/Demo/!svn/act/e2e65cfa-...4165f': 403 Forbidden (htt
我是一名优秀的程序员,十分优秀!