Download geohash-1.3.0.jar file

Introduction

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

License

LGPL 3.0

Type List

geohash-1.3.0.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.3.0.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.3.0</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>Apache License, Version 2.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.3.0</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.12</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.7</source>
           <target>1.7</target>
         </configuration>
       </plugin>
     </plugins>
   </build>
 </project>

POM Entry

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

Download

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



Download geohash-1.3.0.jar file




PreviousNext

Related