Skip to content

Instantly share code, notes, and snippets.

@MoriTanosuke
Created October 22, 2012 05:20
Show Gist options
  • Select an option

  • Save MoriTanosuke/3929807 to your computer and use it in GitHub Desktop.

Select an option

Save MoriTanosuke/3929807 to your computer and use it in GitHub Desktop.
fitbit-cli-example POM
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.kopis</groupId>
<artifactId>fitbit-cli-example</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>com.fitbit</groupId>
<artifactId>fitbit4j</artifactId>
<version>1.0.24-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<mainClass>FitbitConsoleApplication</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment