-
Notifications
You must be signed in to change notification settings - Fork 93
Artifactory
Ioannis Papapanagiotou edited this page Aug 14, 2018
·
9 revisions
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/'
}
}
A Netflix Original Production
Tech Blog | Twitter @NetflixOSS | Jobs