我有一个需要org.eclipse.hudson:hudson-core:3.3.3
. 它一直运行良好,直到今天,它只是说:
Could not resolve org.eclipse.hudson:hudson-remoting:3.0.3
我创建了一个 Maven 项目hudson-remoting:3.0.3
,它工作正常。jar 也在 Maven 中心。Gradle 虽然能够解决hudson-remoting:3.0.2
,但hudson-core:3.3.3
需要hudson-remoting:3.0.3
. 到底是怎么回事?
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.eclipse.hudson:hudson-remoting:3.0.3'
}
这些项目使用由 IntelliJ 创建的捆绑的 Gradle 6.8。