Download google-geocoding-3.0.1.jar file

Introduction

You can download google-geocoding-3.0.1.jar in this page.

License

Apache License Version 2

Type List

google-geocoding-3.0.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.bytebybyte/google-geocoding/pom.properties
META-INF/maven/com.bytebybyte/google-geocoding/pom.xml
com.bytebybyte.google.geocoding.service.IGeocodeRequest.class
com.bytebybyte.google.geocoding.service.IGeocodingService.class
com.bytebybyte.google.geocoding.service.IResponse.class
com.bytebybyte.google.geocoding.service.IReverseGeocodeRequest.class
com.bytebybyte.google.geocoding.service.request.GeocodeRequest.class
com.bytebybyte.google.geocoding.service.request.GeocodeRequestBuilder.class
com.bytebybyte.google.geocoding.service.request.ReverseGeocodeRequest.class
com.bytebybyte.google.geocoding.service.request.ReverseGeocodeRequestBuilder.class
com.bytebybyte.google.geocoding.service.response.AddressComponent.class
com.bytebybyte.google.geocoding.service.response.Geometry.class
com.bytebybyte.google.geocoding.service.response.LatLng.class
com.bytebybyte.google.geocoding.service.response.LocationType.class
com.bytebybyte.google.geocoding.service.response.Response.class
com.bytebybyte.google.geocoding.service.response.Result.class
com.bytebybyte.google.geocoding.service.response.Status.class
com.bytebybyte.google.geocoding.service.response.Type.class
com.bytebybyte.google.geocoding.service.response.Viewport.class
com.bytebybyte.google.geocoding.service.standard.StandardGeocodingService.class

Pom

google-geocoding-3.0.1.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>

	<groupId>com.bytebybyte</groupId>
	<artifactId>google-geocoding</artifactId>
	<version>3.0.1</version>

	<name>Google Geocoding Service</name>
	<description>Java API for the Google geocoding service.</description>
	<url>https://github.com/gjordi/google-geocoding</url>

	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>1.1.6.RELEASE</version>
	</parent>

	<organization>
		<name>Byte by Byte Inc.</name>
		<url>http://www.bytebybyte.com</url>
	</organization>

	<prerequisites>
		<maven>3.0.0</maven>
	</prerequisites>

	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter</artifactId>
			<exclusions>
				<exclusion>
					<groupId>org.springframework.boot</groupId>
					<artifactId>spring-boot-starter-logging</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-log4j</artifactId>
		</dependency>
		
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-web</artifactId>
		</dependency>
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<scm>
		<connection>scm:git:git@github.com:gjordi/google-geocoding.git</connection>
		<developerConnection>scm:git:git@github.com:gjordi/google-geocoding.git</developerConnection>
		<url>git@github.com:gjordi/google-geocoding.git</url>
	  <tag>google-geocoding-3.0.1</tag>
  </scm>

	<issueManagement>
		<system>github</system>
		<url>https://github.com/gjordi/google-geocoding/issues</url>
	</issueManagement>

	<licenses>
		<license>
			<name>Apache License Version 2</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
		</license>
	</licenses>

	<developers>
		<developer>
			<id>gjordi</id>
			<name>Gjordi McIntyre</name>
			<email>gjordi@bytebybyte.com</email>
			<roles>
				<role>architect</role>
				<role>developer</role>
			</roles>
			<timezone>UTC-7</timezone>
		</developer>
	</developers>

	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.5</version>
				<configuration>
					<autoVersionSubmodules>true</autoVersionSubmodules>
					<useReleaseProfile>false</useReleaseProfile>
					<releaseProfiles>release</releaseProfiles>
					<goals>deploy</goals>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.sonatype.plugins</groupId>
				<artifactId>nexus-staging-maven-plugin</artifactId>
				<version>1.6.2</version>
				<extensions>true</extensions>
				<configuration>
					<serverId>ossrh</serverId>
					<nexusUrl>https://oss.sonatype.org/</nexusUrl>
					<autoReleaseAfterClose>true</autoReleaseAfterClose>
				</configuration>
			</plugin>
		</plugins>
	</build>

	<profiles>
		<profile>
			<id>release</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-source-plugin</artifactId>
						<version>2.3</version>
						<executions>
							<execution>
								<id>attach-sources</id>
								<goals>
									<goal>jar-no-fork</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-javadoc-plugin</artifactId>
						<version>2.9.1</version>
						<executions>
							<execution>
								<id>attach-javadocs</id>
								<goals>
									<goal>jar</goal>
								</goals>
							</execution>
						</executions>
					</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>
				</plugins>
			</build>
		</profile>
	</profiles>

	<distributionManagement>
		<snapshotRepository>
			<id>ossrh</id>
			<name>Maven Central Snapshot Repository</name>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>ossrh</id>
			<name>Maven Central Staging Repository</name>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

</project>

POM Entry

<dependency>
   <groupId>com.bytebybyte</groupId>
   <artifactId>google-geocoding</artifactId>
   <version>3.0.1</version>
</dependency>

Download

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



Download google-geocoding-3.0.1.jar file




PreviousNext

Related