Corda-ci-artifactory.Corda.r3cev.com连接被拒绝

Corda-ci-artifactory.Corda.r3cev.com连接被拒绝,corda,Corda,我刚刚为我的家用电脑安装了一个新的操作系统,安装了IntelliJ,并克隆了一个需要Corda的项目。(为了在这里解释这个问题,我使用corda/samples存储库) 导入gradle项目时,出现以下错误: A problem occurred configuring root project 'cordapp-example'. > Could not resolve all artifacts for configuration ':classpath'. > Could

我刚刚为我的家用电脑安装了一个新的操作系统,安装了IntelliJ,并克隆了一个需要Corda的项目。(为了在这里解释这个问题,我使用corda/samples存储库)

导入gradle项目时,出现以下错误:

A problem occurred configuring root project 'cordapp-example'.
> Could not resolve all artifacts for configuration ':classpath'.
   > Could not resolve net.corda.plugins:cordapp:4.0.45.
     Required by:
         project :
      > Could not resolve net.corda.plugins:cordapp:4.0.45.
         > Could not get resource 'https://ci-artifactory.corda.r3cev.com/artifactory/corda-releases/net/corda/plugins/cordapp/4.0.45/cordapp-4.0.45.pom'.
            > Could not GET 'https://ci-artifactory.corda.r3cev.com/artifactory/corda-releases/net/corda/plugins/cordapp/4.0.45/cordapp-4.0.45.pom'.
               > Connect to ci-artifactory.corda.r3cev.com:443 [ci-artifactory.corda.r3cev.com/13.93.114.78] failed: Connection refused (Connection refused)
   > Could not resolve net.corda.plugins:cordformation:4.0.45.
     Required by:
         project :
      > Could not resolve net.corda.plugins:cordformation:4.0.45.
         > Could not get resource 'https://ci-artifactory.corda.r3cev.com/artifactory/corda-releases/net/corda/plugins/cordformation/4.0.45/cordformation-4.0.45.pom'.
            > Could not GET 'https://ci-artifactory.corda.r3cev.com/artifactory/corda-releases/net/corda/plugins/cordformation/4.0.45/cordformation-4.0.45.pom'.
               > Connect to ci-artifactory.corda.r3cev.com:443 [ci-artifactory.corda.r3cev.com/13.93.114.78] failed: Connection refused (Connection refused)
   > Could not resolve net.corda.plugins:quasar-utils:4.0.45.
     Required by:
         project :
      > Could not resolve net.corda.plugins:quasar-utils:4.0.45.
         > Could not get resource 'https://ci-artifactory.corda.r3cev.com/artifactory/corda-releases/net/corda/plugins/quasar-utils/4.0.45/quasar-utils-4.0.45.pom'.
            > Could not GET 'https://ci-artifactory.corda.r3cev.com/artifactory/corda-releases/net/corda/plugins/quasar-utils/4.0.45/quasar-utils-4.0.45.pom'.
               > Connect to ci-artifactory.corda.r3cev.com:443 [ci-artifactory.corda.r3cev.com/13.93.114.78] failed: Connection refused (Connection refused)
简言之

连接到ci-artifactory.corda.r3cev.com:443[ci-artifactory.corda.r3cev.com/13.93.114.78]失败:连接被拒绝(连接被拒绝)

我在我的工作电脑上尝试了同样的方法,这台电脑已经运行IntelliJ和Corda一段时间了,我没有遇到同样的问题,所以我的第一个假设是我的家用电脑有问题,尽管我不完全相信,所以在我的工作机器上,我强制清除了所有的gradle缓存(使缓存无效并从IntelliJ重新启动在这里对您没有帮助)

现在,我在我的工作PC上也遇到了同样的问题,这向我表明,如果依赖项已经在本地缓存,gradle就不会费心去获取它们,这是我所期望的


关于如何修复有什么想法吗?

在这个场合,R3的DevOps似乎在对artifactory服务器进行一些维护。这个问题不太可能经常出现,但我会保持开放状态,以防其他人遇到这个问题

另外,我还升级了我的gradle依赖项,现在可以使用以下功能:

repositories {
    maven { url 'https://software.r3.com/artifactory/corda' }
    ...
}

在这个场合,R3的DevOps似乎在对artifactory服务器进行一些维护。这个问题不太可能经常出现,但我会保持它的开放性,以防其他人碰巧遇到这个问题

另外,我还升级了我的gradle依赖项,现在可以使用以下功能:

repositories {
    maven { url 'https://software.r3.com/artifactory/corda' }
    ...
}