Download geocoder-1.3.5.jar file

Introduction

You can download geocoder-1.3.5.jar in this page.

License

The Apache Software License, Version 2.0

Type List

geocoder-1.3.5.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.openimaj/geocoder/pom.properties
META-INF/maven/org.openimaj/geocoder/pom.xml
org.openimaj.text.geo.WorldPlace.class
org.openimaj.text.geo.WorldPolygons.class
org.openimaj.text.nlp.geocode.GeonamesIndex.class
org.openimaj.text.nlp.geocode.GeonamesIndexGenerator.class
org.openimaj.text.nlp.geocode.ReverseGeoCode.class
org/openimaj/text/geo/countries_world.kml

Pom

geocoder-1.3.5.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<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>
  <parent>
    <artifactId>openimaj-knowledge</artifactId>
    <groupId>org.openimaj</groupId>
    <version>1.3.5</version>
  </parent>
  <artifactId>geocoder</artifactId>
  <packaging>jar</packaging>
  <name>geocoder</name>
	<inceptionYear>2011</inceptionYear>
  <description>Geocoding and reverse geocoding utilities</description>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <dependencies>
    <dependency>
      <groupId>org.openimaj</groupId>
      <artifactId>core</artifactId>
      <version>1.3.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.openimaj</groupId>
      <artifactId>core-math</artifactId>
      <version>1.3.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.openimaj</groupId>
      <artifactId>nearest-neighbour</artifactId>
      <version>1.3.5</version>
      <scope>compile</scope>
    </dependency>
		<dependency>
			<groupId>org.geonames</groupId>
			<artifactId>geonames</artifactId>
			<version>1.0</version>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.5</version>
		</dependency>
		<dependency>
			<groupId>org.apache.solr</groupId>
			<artifactId>solr-core</artifactId>
			<version>4.0.0-ALPHA</version>
			<exclusions>
				<exclusion>
					<groupId>commons-logging</groupId>
					<artifactId>commons-logging</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>slf4j-jdk14</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>org.apache.solr</groupId>
			<artifactId>solr-solrj</artifactId>
			<version>4.0.0-ALPHA</version>
			<exclusions>
				<exclusion>
					<groupId>log4j</groupId>
					<artifactId>log4j</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
	  <plugin>
        <groupId>com.mycila.maven-license-plugin</groupId>
        <artifactId>maven-license-plugin</artifactId>
        <version>1.9.0</version>
        <configuration>
          <header>src/etc/header.txt</header>
          <strictCheck>true</strictCheck>
          <properties>
            <year>${project.inceptionYear}</year>
          </properties>
          <excludes>
            <exclude>AUTHORS</exclude>
            <exclude>COPYING</exclude>
						<exclude>**/*.kml</exclude>
          </excludes>
          <mapping>
            <jtemp>JAVADOC_STYLE</jtemp>
          </mapping>
          <useDefaultMapping>true</useDefaultMapping>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.openimaj</groupId>
   <artifactId>geocoder</artifactId>
   <version>1.3.5</version>
</dependency>

Download

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



Download geocoder-1.3.5.jar file




PreviousNext

Related