3

当我尝试跑步时,./gradlew run我不断得到:

Downloading https://services.gradle.org/distributions/gradle-4.4.1-bin.zip

Exception in thread "main" javax.net.ssl.SSLException: java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty

试过了curl -v https://services.gradle.org/distributions/gradle-4.4.1-bin.zip ,效果很好

Connected to services.gradle.org (2400:cb00:2048:1::6810:aba6)
successfully set certificate verify locations:
CAfile: /etc/ssl/certs/ca-certificates.crt
CApath: /etc/ssl/certs
4

1 回答 1

3

您没有提到您使用的是哪个 JDK 或 OS/发行版,但它可能ca-certificates-java不是 Oracle JDK/JRE 中的依赖项,因此必须显式安装。

您可能需要运行

sudo /var/lib/dpkg/info/ca-certificates-java.postinst configure

另请参阅 错误 - trustAnchors 参数必须为非空

于 2017-12-21T09:18:20.020 回答