首页 > 其他分享 >Could not resolve all dependencies for configuration ':testCompileClasspath'. Using insecu

Could not resolve all dependencies for configuration ':testCompileClasspath'. Using insecu

时间:2023-10-08 15:49:23浏览次数:34  
标签:opt resolve name url repositories explicit maven https public

Gradle init.gradle文件参数错误导致的Gradle加载失败

 

复制代码
 1 allprojects {
 2     repositories {
 3         mavenLocal()
 4         maven { name "Alibaba" ; url "https://maven.aliyun.com/repository/public" } //将http改为https
 5         maven { name "Bstek" ; url "https://nexus.bsdn.org/content/groups/public/" }
 6         mavenCentral()
 7     }
 8 
 9     buildscript { 
10         repositories { 
11             maven { name "Alibaba" ; url 'https://maven.aliyun.com/repository/public' }
12             maven { name "Bstek" ; url 'https://nexus.bsdn.org/content/groups/public/'}
13             maven { name "M2" ; url 'https://plugins.gradle.org/m2/' }
14         }
15     }
16 }
复制代码

将配置文件中的http改为https问题得到解决。

标签:opt,resolve,name,url,repositories,explicit,maven,https,public
From: https://www.cnblogs.com/Phil-Long/p/17749226.html

相关文章

  • ORA-12012 Error on auto execute of job "SYS"."ORA$AT_OS_OPT_SY_<NN> in 12.2 Dat
    1错误2023-10-08T13:11:12.127171+08:00Errorsinfile/oracle/diag/rdbms/arch/ARCH2/trace/ARCH2_j000_305066.trc:ORA-12012:erroronautoexecuteofjob"SYS"."ORA$AT_OS_OPT_SY_154038"ORA-20001:StatisticsAdvisor:Invalidtasknamefo......
  • [已解决] Compilation error ptxas fatal : Value ‘sm_30‘ is not defined for opti
    在用cmake编译cuda程序时,总是报Compilationerrorptxasfatal:Value‘sm_30’isnotdefinedforoption‘gpu-name’问题,也是折腾了好久,感谢这位小哥的解决方案,亲试无误,万分感谢~转载:https://blog.csdn.net/Fucking_Code0916/article/details/132429186安装tiny-cudann出......
  • this.getOptions is not a function at Object.loader
    问题描述VuePress使用有样式的组件时报错this.getOptionsisnotafunctionatObject.loader原因分析是这个导致的<stylelang="scss">你的依赖反应不了它就会报错解决方案需要安装sass-loaderstyle-loadersass-loader版本不能太高。。。安装@7的成功运行......
  • 元学习:元学习的始祖论文——《On the Optimization of a Synaptic Learning Rule》
       =============================================         ============================================= ......
  • 戴尔OptiPlex 3020升级BIOS刷入NVME驱动
    前提:戴尔OptiPlex3020的主板是H81的,DELL官网的bios是不支持nvme启动的。我也是在外网找的,然后根据自己的情况刷的。目前电脑刷了后是可以直接选择nvme的ssd启动的。外网链接如下:https://www.tachytelic.net/2021/12/dell-optiplex-7020-nvme-ssd/简单的说下步骤:1、先从DELL官......
  • 深入浅出Ret2dlresolve
    深入浅出探究Ret2dlreslove前言  这个手法是国外作者在2015年提出的,当时的的漏洞利用通常包含两个阶段:第一步先通过信息泄露获得程序的内存布局;第二步才进行实际的漏洞利用。但就是有时候获得不到程序的内存布局,或者获得的被破坏的内存有时不可靠。于是作者提出了ret2dl-res......
  • element ui 的picker-option 30天前限制和30天后限制
    pickerOptionsStart:{disabledDate:(time)=>{//获取当前日期并减少30天//console.log(time,'..........tiem');//console.log(time,'..........tiem');if(this.endDate!=''){//co......
  • 使用Optional优雅避免空指针异常
    本文已收录至GitHub,推荐阅读......
  • C#开源、功能强大、免费的Windows系统优化工具 - Optimizer
    前言今天给大家推荐一款由C#开源、功能强大、免费的Windows系统优化工具-Optimizer。工具介绍Optimizer是一款功能强大的Windows系统优化工具,可帮助用户提高计算机性能、加强隐私和安全保护。该工具支持22种语言,同时提供了许多实用的功能,如关闭不必要的Windows服务、停止Wind......
  • Docker - Optimized Dockerfile
    WehavetheincentivetooptimizeourDockerfileto buildsmallerimages.Someofthepointsthatwecanprobablycomeupwithwould bethefollowing:• NotusingGolangforourbaseimage.Golangisastaticallycompiled language—oncewehavethecompil......