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'
...
}
Fork the project source code on github:
git clone git://github.com/arcao/geocaching-api.git
Binaries you can found in my maven repository.
- SLS4J - 1.7.7 (slf4j-log4j12 used by default)
- gson - 2.3
- junit 4.11 (only for run tests)
- commons-lang3 3.3.2
Example codes how to use geocaching-api library you can found in geocaching-api-examples repository.
geocaching-api is distributed under Apache License, Version 2.0.
- author: Martin Sloup aka arcao
- questions: arcao@arcao.com