2 回答

TA貢獻(xiàn)1880條經(jīng)驗(yàn) 獲得超4個(gè)贊
com.afollestad:ason:1.4.16
位于:
https://repo.spring.io/libs-release/com/afollestad/ason/1.4.16/
您需要在repositories
列表中再添加一個(gè)存儲(chǔ)庫(kù):
maven { url 'https://repo.spring.io/libs-release' }
下一次,這個(gè)答案是由以下人找到的:
谷歌
com.afollestad:ason:1.4.16
單擊
com.afollestad ? ason ? 1.4.16 - Maven Repository
搜索結(jié)果鏈接閱讀注釋:
注意:這個(gè)工件位于 Spring Lib Release 存儲(chǔ)庫(kù)(https://repo.spring.io/libs-release/)

TA貢獻(xiàn)1789條經(jīng)驗(yàn) 獲得超10個(gè)贊
好的:
您的 Gradle 構(gòu)建失敗,因?yàn)樗也坏酱艘蕾図?xiàng):
compile group: 'com.afollestad', name: 'ason', version: '1.4.16'
谷歌快速搜索證實(shí)它似乎可以在 MavenRepository 上使用:
https://mvnrepository.com/artifact/com.afollestad/ason/1.4.6
但同一個(gè)鏈接顯示您需要將其添加到您的 build.gradle 中:
注意:這個(gè)工件位于 Spring Plugins 存儲(chǔ)庫(kù)(https://repo.spring.io/plugins-release/)
所以改變這個(gè):
repositories {
jcenter()
mavenCentral()
maven {
url 'https://jitpack.io'
}
maven {
url 'https://repo.spring.io/plugins-release/'
}
添加回答
舉報(bào)