Retrofit: Where are the snapshots located?

Created on 21 Sep 2015  路  2Comments  路  Source: square/retrofit

It is listed in the Readme that the location of the snapshot repo is in Sonatype's snapshots repository, however I'm not able to find them there. Where are they supposed to be located?

Most helpful comment

The link is to the repository which you can add to your build system so that depending on the SNAPSHOT version works.

e.g., for gradle,

repositories {
  maven {
    url 'https://oss.sonatype.org/content/repositories/snapshots/'
  }
}

And as @felipecsl linked, the artifacts are available in there under the path of the groupId, artifactId, and snapshot version.

All 2 comments

The link is to the repository which you can add to your build system so that depending on the SNAPSHOT version works.

e.g., for gradle,

repositories {
  maven {
    url 'https://oss.sonatype.org/content/repositories/snapshots/'
  }
}

And as @felipecsl linked, the artifacts are available in there under the path of the groupId, artifactId, and snapshot version.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

MetaiR picture MetaiR  路  3Comments

bhagyasri picture bhagyasri  路  3Comments

attaullahpro picture attaullahpro  路  3Comments

jpshelley picture jpshelley  路  4Comments

zheangrybear picture zheangrybear  路  3Comments