gpt4 book ai didi

maven - 如何在build.gradle中指定多个mavenRepo?

转载 作者:行者123 更新时间:2023-12-03 03:22:16 26 4
gpt4 key购买 nike

我想在我的构建中使用多个mavenRepo:

  repositories {
mavenLocal()
mavenCentral()
mavenRepo {
url: "http://cloudant.github.io/cloudant-sync-eap/repository/"
url: 'https://github.com/snowch/sync-android-p2p/raw/master/repository/'
}
}

但是,构建失败并显示类似以下错误:
> Could not find method mavenRepo() for arguments [...] on repository container.

如何指定多个mavenRepo?

注意:我使用的是gradle的旧版本,因此需要使用不推荐使用的mavenRepo语句。

最佳答案

根据官方的Gradle 1.1 documentation,您应该能够使用更新的url属性,如下所示:

repositories {
mavenLocal()
mavenCentral()

maven { url 'http://cloudant.github.io/cloudant-sync-eap/repository/' }
maven { url 'https://github.com/snowch/sync-android-p2p/raw/master/repository/' }
}

this Gradle discussion所述,每个 maven块只能使用一个URL。

关于maven - 如何在build.gradle中指定多个mavenRepo?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32690876/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com