我正在尝试设置gradle.build文件,但我遇到了以下传递依赖项的问题:
org.glassfish.ha:ha-api:3.1.8
。
看来pom.xml指定二进制文件位于" hk2-jar"格式实际上是不正确的,因为二进制文件只是在" jar"格式。在做了一些研究后,我发现了以下内容:
How should gradle handle “hk2-jar” dependencies?
不幸的是,这似乎不起作用。通过我发现的文档阅读更多内容我应该能够做到这样的事情:
configurations.all {
resolutionStrategy.force 'org.glassfish.ha:ha-api:3.1.8@jar'
}
这产生了类似的错误结果:
如您所见,它会尝试实际拉下以下网址:
http://repo-url/org/glassfish/ha/ha-api@jar/3.1.8@jar.pom
有没有人知道如何正确地提取正确的二进制文件并排除不正确的依赖项?
谢谢!
修改
只是想补充一点,我遇到的原始问题是,当Gradle尝试从我们的内部Artifactory下载ha-api依赖项时,返回403,因为我们的存储库中不存在hk2-jar文件(仅jar确实):
* What went wrong:
Could not resolve all dependencies for configuration ':compileClasspath'.
> Could not determine artifacts for org.glassfish.ha:ha-api:3.1.8
> Could not get resource 'http://repo-url/artifactory/libs-release/org/glassfish/ha/ha-api/3.1.8/ha-api-3.1.8.hk2-jar'.
> Could not HEAD 'http://repo-url/artifactory/libs-release/org/glassfish/ha/ha-api/3.1.8/ha-api-3.1.8.hk2-jar'. Received status code 403 from server: Forbidden
答案 0 :(得分:1)
这似乎是一个问题,主要是因为某些原因使用Artifactory(不是maven central / jcenter)。
中描述的解决方案在一个项目中使用依赖项:
configurations.all {
resolutionStrategy.dependencySubstitution {
all { DependencySubstitution dependency ->
def requested = dependency.requested
if (requested instanceof ModuleComponentSelector && requested.group == 'org.glassfish.ha' && requested.name == 'ha-api') {
dependency.useTarget "org.glassfish.ha:ha-ap:${requested.version}@jar"
}
}
}
}
用于更改库项目中的传递依赖性(因此其他依赖于此的项目不必执行上述操作):
publications {
foo(MavenPublication) {
pom.withXml {
def dependency = asNode().dependencies.dependency.find {
it.groupId.text() == 'org.glassfish.ha' && it.artifactId.text() == 'ha-api')
}
dependency.appendNode('type', 'jar')
}
}
}
如果这也可以在Artifactory中完成,可能值得一试。