2 回答
TA贡献1880条经验 获得超4个赞
com.afollestad:ason:1.4.16
位于:
https://repo.spring.io/libs-release/com/afollestad/ason/1.4.16/
您需要在repositories
列表中再添加一个存储库:
maven { url 'https://repo.spring.io/libs-release' }
下一次,这个答案是由以下人找到的:
谷歌
com.afollestad:ason:1.4.16
单击
com.afollestad » ason » 1.4.16 - Maven Repository
搜索结果链接阅读注释:
注意:这个工件位于 Spring Lib Release 存储库(https://repo.spring.io/libs-release/)
TA贡献1789条经验 获得超10个赞
好的:
您的 Gradle 构建失败,因为它找不到此依赖项:
compile group: 'com.afollestad', name: 'ason', version: '1.4.16'
谷歌快速搜索证实它似乎可以在 MavenRepository 上使用:
https://mvnrepository.com/artifact/com.afollestad/ason/1.4.6
但同一个链接显示您需要将其添加到您的 build.gradle 中:
注意:这个工件位于 Spring Plugins 存储库(https://repo.spring.io/plugins-release/)
所以改变这个:
repositories {
jcenter()
mavenCentral()
maven {
url 'https://jitpack.io'
}
maven {
url 'https://repo.spring.io/plugins-release/'
}
添加回答
举报