一、地址下jar包无法下载问题
报错信息:
Could not get resource ‘https://plugins.gradle.org/m2/org/asciidoctor/org.asciidoctor.jvm.convert.gradle.plugin/asciidoctor-gradle-jvm-2.4.0.jar
解决方案:
(1)把下载地址复制放入迅雷中,下载jar包
(2)在本地包库搜索名字,将包粘贴到没有下载成功的路径下.重新执行gradle
二、jar包版本不全问题
报错信息:
POM relocation to an other version number is not fully supported in Gradle : xml-apis:xml-apis:2.0.2 relocated to xml-apis:xml-apis:1.0.b2.
解决方案:
修改引入方式,修改bulid.gradle,搜索configurations.all,添加如下内容:
1 configurations.all { 2 resolutionStrategy { 3 force 'xml-apis:xml-apis:1.4.01' 4 } 5 }