Download geohash-1.0.13.jar file

Introduction

You can download geohash-1.0.13.jar in this page.

License

LGPL 3.0

Type List

geohash-1.0.13.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/ch.hsr/geohash/pom.properties
META-INF/maven/ch.hsr/geohash/pom.xml
ch.hsr.geohash.BoundingBox.class
ch.hsr.geohash.GeoHash.class
ch.hsr.geohash.WGS84Point.class
ch.hsr.geohash.queries.GeoHashBoundingBoxQuery.class
ch.hsr.geohash.queries.GeoHashCircleQuery.class
ch.hsr.geohash.queries.GeoHashQuery.class
ch.hsr.geohash.util.BoundingBoxGeoHashIterator.class
ch.hsr.geohash.util.BoundingBoxSampler.class
ch.hsr.geohash.util.GeoHashSizeTable.class
ch.hsr.geohash.util.LongUtil.class
ch.hsr.geohash.util.TwoGeoHashBoundingBox.class
ch.hsr.geohash.util.VincentyGeodesy.class

Pom

geohash-1.0.13.pom file content.

<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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<packaging>jar</packaging>
	<groupId>ch.hsr</groupId>
	<artifactId>geohash</artifactId>
	<version>1.0.13</version>
	<name>geohash-java</name>
	<description>
    An implementation of Geohashes in pure Java.
  </description>
	<url>https://github.com/kungfoo/geohash-java</url>
	<licenses>
		<license>
			<name>LGPL 3.0</name>
			<url>https://raw.github.com/kungfoo/geohash-java/master/LICENSE</url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	<scm>
		<connection>scm:git:git@github.com:kungfoo/geohash-java.git</connection>
		<developerConnection>scm:git:git@github.com:kungfoo/geohash-java.git</developerConnection>
		<url>git@github.com:kungfoo/geohash-java.git</url>
		<tag>1.0.13</tag>
	</scm>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>
	<developers>
		<developer>
			<id>kungfoo</id>
		</developer>
		<developer>
			<id>github contributors</id>
		</developer>
	</developers>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
	</properties>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.8.1</version>
			<scope>test</scope>
		</dependency>
	</dependencies>
	<build>
		<plugins>

			<plugin>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.4.2</version>

				<configuration>
					<tagNameFormat>@{project.version}</tagNameFormat>
					<pushChanges>false</pushChanges>
					<localCheckout>true</localCheckout>
					<useReleaseProfile>false</useReleaseProfile>
					<releaseProfiles>release</releaseProfiles>
					<goals>deploy</goals>
				</configuration>

				<dependencies>
					<dependency>
						<groupId>org.apache.maven.scm</groupId>
						<artifactId>maven-scm-provider-gitexe</artifactId>
						<version>1.8.1</version>
					</dependency>
				</dependencies>
			</plugin>

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.0</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>

POM Entry

<dependency>
   <groupId>ch.hsr</groupId>
   <artifactId>geohash</artifactId>
   <version>1.0.13</version>
</dependency>

Download

If you think the following geohash-1.0.13.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download geohash-1.0.13.jar file




PreviousNext

Related