xebia-functional / appsly-android-rest

An Android client library for RESTful based web services.
209 stars 51 forks source link

MavenCentral not available #28

Closed tobyworks closed 10 years ago

tobyworks commented 10 years ago

Please make the lib available on mavencentral since i cannot find it. And gradleplease.appspot.com can't find it either

raulraja commented 10 years ago

@tanab We don't have an official release yet although we are getting close. Once 1.2 is ready it will be released to maven central meanwhile the snapshots are here as specified in the README.

SNAPSHOTS

Maven

<repository>
    <id>public-snapshots</id>
    <url>http://clinker.47deg.com/nexus/content/repositories/snapshots</url>
    <snapshots>
        <enabled>true</enabled>
        <updatePolicy>daily</updatePolicy>
        <checksumPolicy>fail</checksumPolicy>
    </snapshots>
</repository>

<dependency>
    <groupId>ly.apps</groupId>
    <artifactId>android-rest</artifactId>
    <version>1.2-SNAPSHOT</version>
</dependency>

Gradle

dependencies {
    compile ('ly.apps:android-rest:1.2-SNAPSHOT@aar') {
        transitive = true
    }
}