Skip to content

Instantly share code, notes, and snippets.

@caseycrites
Created May 17, 2011 17:54
Show Gist options
  • Select an option

  • Save caseycrites/976975 to your computer and use it in GitHub Desktop.

Select an option

Save caseycrites/976975 to your computer and use it in GitHub Desktop.
<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>com.simplegeo</groupId>
<artifactId>java-simplegeo</artifactId>
<version>2.2</version>
<packaging>jar</packaging>
<url>https://simplegeo.com</url>
<licenses>
<license>
<name>BSD License</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/simplegeo/java-simplegeo.git</connection>
<developerConnection>scm:git:git://github.com/simplegeo/java-simplegeo.git</developerConnection>
<url>https://github.com/simplegeo/java-simplegeo</url>
</scm>
<developers>
<developer>
<email>casey@simplegeo.com</email>
<id>casey@simplegeo.com</id>
<name>Casey Crites</name>
<organization>SimpleGeo</organization>
</developer>
</developers>
<contributors>
<contributor>
<email>pranil@mokriya.com</email>
<name>Pranil Kanderi</name>
<organization>Mokriya</organization>
</contributor>
</contributors>
<organization>
<name>SimpleGeo</name>
<url>https://simplegeo.com</url>
</organization>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>oauth.signpost</groupId>
<artifactId>oauth-signpost</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>oauth.signpost</groupId>
<artifactId>signpost-core</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20090211</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcomponents-client</artifactId>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcomponents-core</artifactId>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>tests/src</testSourceDirectory>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment