arcao / geocaching-api

Java implementation of Groundspeak's Geocaching Live API.
Other
6 stars 3 forks source link
api geocaching groundspeak java java-library

Geocaching API for Java

Build Status Latest version Apache License

Java implementation of Groundspeak's Geocaching Live API.

Released builds are available from a private maven repository. So add bellow to your pom.xml file:

<repositories>
  <repository>
    <id>maven-arcao-com</id>
    <url>http://maven.arcao.com</url>
  </repository>
</repositories>

Note: It's a Maven2 compatible repository.

And add dependency to geocaching-api artifact:

<dependencies>
        <dependency>
            <groupId>com.arcao</groupId>
            <artifactId>geocaching-api</artifactId>
            <version>1.6.3</version>
        </dependency>
    ...
</dependencies>

Or if you use Gradle build system, add bellow to your build.gradle:

repositories {
    ...
    maven { url 'http://maven.arcao.com' }
}

dependencies {
    ...
    // from maven.arcao.com repository
    compile 'com.arcao:geocaching-api:1.6.3'
    ...
}

Get the source

Fork the project source code on github:

git clone git://github.com/arcao/geocaching-api.git

Get latest binaries

Binaries you can found in my maven repository.

Required libraries (maven dependencies)

Examples

Example codes how to use geocaching-api library you can found in geocaching-api-examples repository.

License

geocaching-api is distributed under Apache License, Version 2.0.

Contact