Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.
John Cline edited this page Nov 23, 2013 · 4 revisions

If you want to use Maven for dependency management add following repository into your pom.xml:

  <repository>
    <id>foursquareapijava</id>
    <name>Foursquare V2 API for Java Repository</name>
    <url>http://foursquare-api-java.googlecode.com/svn/repository</url>
  </repository>
And dependency:

  <dependency>
    <groupId>fi.foyt</groupId>
    <artifactId>foursquare-api</artifactId>
    <version>VERSION</version>
  </dependency>
Optionally if you need Google App Engine support add also following dependency:

  <dependency>
    <groupId>fi.foyt</groupId>
    <artifactId>foursquare-api-gae</artifactId>
    <version>VERSION</version>
  </dependency>
Clone this wiki locally