Artifactory - Netflix/dyno GitHub Wiki
Artifacts are published in jCenter through the Travis script. The logic The logic is if the name of release contains rc.x
then this is considered a candidate
release. For example, 1.5.8-rc.2.
The following is the description of how the build.gradle
should look in terms of the repositories to find the published artifacts.
repositories {
jcenter()
}
Release candidates are released under the following oss-candidate repository. The build.gradle
would be as follows
repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/netflixoss/oss-candidate/'
}
}