Download geojson-jackson-1.8.jar file

Introduction

You can download geojson-jackson-1.8.jar in this page.

License

The Apache Software License, Version 2.0

Type List

geojson-jackson-1.8.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/de.grundid.opendatalab/geojson-jackson/pom.properties
META-INF/maven/de.grundid.opendatalab/geojson-jackson/pom.xml
org.geojson.Crs.class
org.geojson.Feature.class
org.geojson.FeatureCollection.class
org.geojson.GeoJsonObject.class
org.geojson.GeoJsonObjectVisitor.class
org.geojson.Geometry.class
org.geojson.GeometryCollection.class
org.geojson.LineString.class
org.geojson.LngLatAlt.class
org.geojson.MultiLineString.class
org.geojson.MultiPoint.class
org.geojson.MultiPolygon.class
org.geojson.Point.class
org.geojson.Polygon.class
org.geojson.jackson.CrsType.class
org.geojson.jackson.LngLatAltDeserializer.class
org.geojson.jackson.LngLatAltSerializer.class

Pom

geojson-jackson-1.8.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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<groupId>de.grundid.opendatalab</groupId>
	<artifactId>geojson-jackson</artifactId>
	<version>1.8</version>
	<packaging>jar</packaging>


	<name>GeoJson POJOs for Jackson </name>
	<url>https://github.com/opendatalab-de/geojson-jackson</url>
	<description>A collection of Java POJOs for GeoJson</description>

	<scm>
		<connection>scm:git:git://github.com/opendatalab-de/geojson-jackson.git</connection>
		<developerConnection>scm:git:ssh://git@github.com:/opendatalab-de/geojson-jackson.git</developerConnection>
	  <tag>geojson-jackson-1.8</tag>
  </scm>

	<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>

	<developers>
		<developer>
			<name>Adrian Stabiszewski</name>
			<email>as@nfctools.org</email>
			<organization>GrundID GmbH</organization>
			<organizationUrl>http://www.grundid.de</organizationUrl>
		</developer>
	</developers>

	<properties>
		<java-version>1.6</java-version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-core</artifactId>
			<version>2.7.3</version>
		</dependency>
		<dependency>
			<groupId>com.fasterxml.jackson.core</groupId>
			<artifactId>jackson-databind</artifactId>
			<version>2.7.3</version>
		</dependency>
		<dependency>
			<groupId>org.mockito</groupId>
			<artifactId>mockito-core</artifactId>
			<version>1.10.19</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.12</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<extensions>
			<extension>
				<groupId>org.apache.maven.wagon</groupId>
				<artifactId>wagon-ssh</artifactId>
				<version>2.2</version>
			</extension>
		</extensions>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.5.1</version>
				<inherited>true</inherited>
				<configuration>
					<autoVersionSubmodules>true</autoVersionSubmodules>
					<arguments>-Psonatype-oss-release -Dgpg.passphrase=</arguments>
				</configuration>
			</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-javadoc-plugin</artifactId>
				<version>2.9.1</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.4</version>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3.2</version>
				<configuration>
					<source>${java-version}</source>
					<target>${java-version}</target>
				</configuration>
			</plugin>
		</plugins>
	</build>

</project>

POM Entry

<dependency>
   <groupId>de.grundid.opendatalab</groupId>
   <artifactId>geojson-jackson</artifactId>
   <version>1.8</version>
</dependency>

Download

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



Download geojson-jackson-1.8.jar file




PreviousNext

Related