You can download geocoder-java-0.16.jar in this page.
The Apache Software License, Version 2.0
geocoder-java-0.16.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.google.code.geocoder-java/geocoder-java/pom.properties META-INF/maven/com.google.code.geocoder-java/geocoder-java/pom.xml com.google.code.geocoder.AdvancedGeoCoder.class com.google.code.geocoder.GeoAddressService.class com.google.code.geocoder.GeoSearchableAddress.class com.google.code.geocoder.Geocoder.class com.google.code.geocoder.GeocoderRequestBuilder.class com.google.code.geocoder.model.AddressDetails.class com.google.code.geocoder.model.GeocodeResponse.class com.google.code.geocoder.model.GeocoderAddressComponent.class com.google.code.geocoder.model.GeocoderComponent.class com.google.code.geocoder.model.GeocoderGeometry.class com.google.code.geocoder.model.GeocoderLocationType.class com.google.code.geocoder.model.GeocoderRequest.class com.google.code.geocoder.model.GeocoderResult.class com.google.code.geocoder.model.GeocoderResultType.class com.google.code.geocoder.model.GeocoderStatus.class com.google.code.geocoder.model.LatLng.class com.google.code.geocoder.model.LatLngBounds.class
geocoder-java-0.16.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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- The Basics --> <groupId>com.google.code.geocoder-java</groupId> <artifactId>geocoder-java</artifactId> <version>0.16</version> <packaging>jar</packaging> <name>Geocoder</name> <description>Java API for Google geocoder v3</description> <url>http://code.google.com/p/geocoder-java/</url> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> <optional>true</optional> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.2.4</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.7</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>1.7.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.7</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.7</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>99.0-does-not-exist</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <!--<modules>...</modules>--> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin> <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> </properties> <prerequisites> <maven>3.0.4</maven> </prerequisites> <!-- mvn versions:display-plugin-updates mvn versions:display-dependency-updates --> <!-- Build Settings --> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <!--<index>true</index>--> <manifest> <addClasspath>true</addClasspath> </manifest> <manifestEntries> <url>${project.url}</url> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.0.201403182114</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>2.17</version> <configuration> <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <links> <link>http://java.sun.com/javase/6/docs/api/</link> </links> <version>true</version> <show>public</show> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <releaseProfiles>release</releaseProfiles> <goals>deploy assembly:single</goals> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4</version> <configuration> <descriptors> <descriptor>src/main/assembly/assembly-descriptor.xml</descriptor> </descriptors> </configuration> </plugin> </plugins> </build> <!--<reporting>...</reporting>--> <!-- More Project Information --> <!--<name>...</name>--> <!--<description>...</description>--> <!--<url>...</url>--> <!--<inceptionYear>...</inceptionYear>--> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <!--<organization>...</organization>--> <developers> <developer> <name>Michael Panchenko</name> <email>panchmp@gmail.com</email> </developer> </developers> <!--<contributors>...</contributors>--> <!-- Environment Settings --> <issueManagement> <system>Google Code Issue Tracking</system> <url>https://code.google.com/p/geocoder-java/issues/list</url> </issueManagement> <!--<ciManagement>...</ciManagement>--> <!--<mailingLists>...</mailingLists>--> <scm> <connection>scm:svn:https://geocoder-java.googlecode.com/svn/tags/geocoder-java-0.16</connection> <developerConnection>scm:svn:https://geocoder-java.googlecode.com/svn/tags/geocoder-java-0.16</developerConnection> <url>https://geocoder-java.googlecode.com/svn/tags/geocoder-java-0.16</url> </scm> <!--<prerequisites>...</prerequisites>--> <repositories> <repository> <id>jboss-public-repository-group</id> <name>JBoss Public Repository Group</name> <url>http://repository.jboss.org/nexus/content/groups/public/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </snapshots> </repository> <repository> <id>gson</id> <url>http://google-gson.googlecode.com/svn/mavenrepo</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <!--<pluginRepositories>...</pluginRepositories>--> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <!--<profiles>...</profiles>--> </project>
<dependency> <groupId>com.google.code.geocoder-java</groupId> <artifactId>geocoder-java</artifactId> <version>0.16</version> </dependency>
If you think the following geocoder-java-0.16.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download geocoder-java-0.16.jar file