本文介绍了Gradle中的JCenter存储库包含哪些内容?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Gradle 1.7 中有新的公共存储库JCenter。

   c>类似于 mavenCentral()。有关更多详细信息,请参阅。 jCenter家伙声称他们比Maven Central有更好的表现。  

From Gradle 1.7 there is new Public repository JCenter.

repositories {
   jcenter()
}

So I want to ask if all jars from Maven Central are parts of this repo? And if not from what is JCenter repo consists of? And is JCenter more reliable from Maven Central as downtime?

解决方案

jcenter() is similar to mavenCentral(). Have a look at https://bintray.com/bintray/jcenter for more details. The jCenter guys claim that they have a better performance than Maven Central.

这篇关于Gradle中的JCenter存储库包含哪些内容?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-13 11:18