My library is on Jcenter. To import it as a Gradle dependency, one must also manually specify the repository's URL like this in the receiving project's build.gradle :
repositories {
jcenter()
maven {
url "https://dl.bintray.com/fabricethilaw/sonarnet"
}
}
How to configure my library in order to make it resolved with only the Gradle implementation com.fabricethilaw.sonarnet:core:xxx
?
UPDATE ABOUT JCENTER
I have checked on Bintray and it looks like my library is already approved on JCenter.
Maybe I am missing something in order to help people get not to have to add
maven { url "https://dl.bintray.com/fabricethilaw/sonarnet" }
, when they import the library in Gradle