我正在尝试从Maven Central下载一个依赖项,它可以在我的主机(OS X)上运行,但是当我尝试在运行CentOS的流浪盒中下载依赖项时出错。
这是错误:
Could not resolve all dependencies for configuration ':compileClasspath'.
Could not resolve org.slf4j:slf4j-api:1.7.21.
Required by:
:gradle-2.14.1:1.0.SNAPSHOT
Could not resolve org.slf4j:slf4j-api:1.7.21.
Could not initialize class org.apache.http.conn.ssl.SSLConnectionSocketFactory
Could not resolve org.slf4j:slf4j-api:1.7.21.
Could not initialize class org.apache.http.conn.ssl.SSLConnectionSocketFactory
Could not resolve org.slf4j:slf4j-api:1.7.21.
Could not initialize class org.apache.http.conn.ssl.SSLConnectionSocketFactory
因为它适用于我的主机,但不适用于我的流浪机,这似乎是流浪者的问题。从我在互联网上看到的有关此错误的内容,它似乎是由代理问题引起的。
这是我的build.gradle文件:
apply plugin: 'java'
version = '1.0.SNAPSHOT'
sourceSets {
main {
java {
exclude 'src/main/java/thirdparty/**'
exclude 'src/main/java/thirdparty/closingmarket/**'
}
}
}
repositories {
jcenter()
mavenCentral()
maven {
url "https://mvnrepository.com/artifact"
}
}
dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.21'
}
这特别令人困惑,因为我可以ping网站,wget,并使用我的yum存储库就好了。
答案 0 :(得分:0)
该问题原来是供应商的问题。从Oracle的安装切换到openJDK 1.6后,我现在可以下载依赖项。