Skip to content

Artifactory

shahar z edited this page Mar 17, 2021 · 3 revisions

There are two repositories that we use depending on the type of release, Stable or Release Candidate (RC). The logic is if the name of release contains rc.x then this is considered an RC release. For example, v0.3.1-rc1

Stable releases

    repositories {
        jcenter()
    }

RC releases

    repositories {
      jcenter()
      maven { url 'https://artifacts-oss.netflix.net/maven-oss-candidates/' }
    }

Clone this wiki locally