Posted on Leave a comment

gradle repositories https

[code]
repositories {
jcenter()
mavenCentral()
}
[/code]

Dependency Management Basics

http://stackoverflow.com/questions/27056733/change-gradle-mavencentral-url-to-my-repo

https://docs.gradle.org/current/dsl/org.gradle.api.artifacts.dsl.RepositoryHandler.html

jcenter – The URL used to access this repository is “https://jcenter.bintray.com/”

mavenCentral – https://repo1.maven.org/maven2/

[code]
repositories {
maven {url "http://repo1.maven.org/maven2"}
}
[/code]

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.