1.问题
POM relocation to an other version number is not fully supported in Gradle : xml-apis:xml-apis:2.0.2
出现这个问题是:不完全支持POM重定位到其他版本号
解决方案:
修改引入方式,打开bulid.gradle文件,搜索configurations.all,添加如下内容:
force 'xml-apis:xml-apis:1.4.01'
修改引入后重新编译就可以了
1.问题
POM relocation to an other version number is not fully supported in Gradle : xml-apis:xml-apis:2.0.2
出现这个问题是:不完全支持POM重定位到其他版本号
解决方案:
修改引入方式,打开bulid.gradle文件,搜索configurations.all,添加如下内容:
force 'xml-apis:xml-apis:1.4.01'
修改引入后重新编译就可以了