当前位置: 代码迷 >> 综合 >> IDEA -gradle项目构建报错:Could not resolve all artifacts for configuration :classpath
  详细解决方案

IDEA -gradle项目构建报错:Could not resolve all artifacts for configuration :classpath

热度:71   发布时间:2023-12-20 11:47:22.0

问题出现:加新依赖,刷新导入时报错
在这里插入图片描述
build.gradle设置镜像,即在下面中加入
maven { url “http://maven.aliyun.com/nexus/content/groups/public/”}

buildscript {
    repositories {
    //配置Maven nexus仓库的地址maven {
     url "https:/"}}dependencies {
    classpath 'org.akhikhl.gretty:gretty:+'classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.1.1"}
}

没用
看setting配置,没问题
在这里插入图片描述
最后解决:
发现经过了代理127.0.0.1:8888,一直没找到设置的地方,最后在proxy中找到
在这里插入图片描述
勾选auto ,问题解决

  相关解决方案