Skip to content

Commit 9d642d9

Browse files
Spatial Framework for Hadoop release v2.2.0
1 parent 28cc6ab commit 9d642d9

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ to [GIS Tools for Hadoop](https://github.com/Esri/gis-tools-for-hadoop).
1010
## What's New
1111

1212
* ST_Centroid now returns the geometry centroid rather than the center of its envelope (as of v2.1).
13-
* [Spatial Framework for Hadoop v2](https://github.com/Esri/spatial-framework-for-hadoop/releases) is compatible with [Geometry v2](https://github.com/Esri/geometry-api-java/releases), Hive v2.3 & v3, and Jackson v2. Note: up-to-date releases may be available [on Github](https://github.com/Esri/spatial-framework-for-hadoop/releases) but [not on Maven Central](https://github.com/Esri/spatial-framework-for-hadoop/issues/123).
13+
* [Spatial Framework for Hadoop v2](https://github.com/Esri/spatial-framework-for-hadoop/releases) is compatible with [Geometry v2](https://github.com/Esri/geometry-api-java/releases), Hive v2.3 & v3, and Jackson v2. Note: up-to-date releases may be available [on Github](https://github.com/Esri/spatial-framework-for-hadoop/releases) but [may not be on Maven Central](https://github.com/Esri/spatial-framework-for-hadoop/issues/123).
1414

1515
## Features
1616

@@ -30,7 +30,8 @@ Build as you would any other Mavenized repository. All dependencies are pulled
3030

3131
### Ant
3232

33-
Ant build files are also available
33+
Ant build files are also available,
34+
but are considered legacy, and may likely be removed in a future release.
3435

3536
At the root level of this repository, you can build a single jar with everything in the framework
3637
using [Apache Ant](http://ant.apache.org/). Alternatively, you can build a jar at the root level of each
@@ -47,7 +48,7 @@ processing.
4748

4849
## Requirements
4950

50-
* Geometry 2.0
51+
* Geometry 2.2
5152
* Hive 0.11 and above (see [Hive Compatibility issues](https://github.com/Esri/spatial-framework-for-hadoop/wiki/ST_Geometry-for-Hive-Compatibility-with-Hive-Versions)) (For building from source, Hive-0.12+ is required.)
5253
* Workflows calling MapReduce jobs require the location of the custom job to be run.
5354
* Custom MapReduce jobs that use the Esri Geometry API require that the developer has authored the job,

build.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<dependency groupId="org.apache.hadoop" artifactId="hadoop-client" version="2.2.0"/>
77
<dependency groupId="org.apache.hive" artifactId="hive-exec" version="0.12.0"/>
88
<dependency groupId="org.apache.hive" artifactId="hive-serde" version="0.12.0"/>
9-
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="2.2.0"/>
10-
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-core" version="2.9.6"/>
11-
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-databind" version="2.9.6"/>
9+
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="2.2.4"/>
10+
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-core" version="2.10.5"/>
11+
<dependency groupId="com.fasterxml.jackson.core" artifactId="jackson-databind" version="2.10.5"/>
1212
</artifact:dependencies>
1313

1414
<target name="init">

hive/build.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
<property name="dir.build" value="build" />
44

55
<artifact:dependencies pathId="dependencies.class.path">
6-
<dependency groupId="org.apache.hadoop" artifactId="hadoop-core" version="0.20.2"/>
7-
<dependency groupId="org.apache.hive" artifactId="hive-exec" version="0.10.0"/>
8-
<dependency groupId="org.apache.hive" artifactId="hive-serde" version="0.10.0"/>
9-
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="1.1"/>
6+
<dependency groupId="org.apache.hadoop" artifactId="hadoop-core" version="2.2.0"/>
7+
<dependency groupId="org.apache.hive" artifactId="hive-exec" version="0.12.0"/>
8+
<dependency groupId="org.apache.hive" artifactId="hive-serde" version="0.12.0"/>
9+
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="2.2.4"/>
1010
</artifact:dependencies>
1111

1212
<target name="init">

hive/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.esri.hadoop</groupId>
66
<artifactId>spatial-sdk-hadoop</artifactId>
7-
<version>2.1.1-SNAPSHOT</version>
7+
<version>2.2.0</version>
88
<relativePath>../</relativePath>
99
</parent>
1010

json/build.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
<property name="dir.build" value="build" />
44

55
<artifact:dependencies pathId="dependencies.class.path">
6-
<dependency groupId="org.apache.hadoop" artifactId="hadoop-core" version="0.20.2"/>
7-
<dependency groupId="org.apache.hive" artifactId="hive-exec" version="0.10.0"/>
8-
<dependency groupId="org.apache.hive" artifactId="hive-serde" version="0.10.0"/>
9-
<dependency groupId="org.apache.hive" artifactId="hive-pdk" version="0.10.0"/>
10-
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="1.1"/>
6+
<dependency groupId="org.apache.hadoop" artifactId="hadoop-core" version="2.2.0"/>
7+
<dependency groupId="org.apache.hive" artifactId="hive-exec" version="0.12.0"/>
8+
<dependency groupId="org.apache.hive" artifactId="hive-serde" version="0.12.0"/>
9+
<dependency groupId="com.esri.geometry" artifactId="esri-geometry-api" version="2.2.4"/>
1110
</artifact:dependencies>
1211

1312

json/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.esri.hadoop</groupId>
66
<artifactId>spatial-sdk-hadoop</artifactId>
7-
<version>2.1.1-SNAPSHOT</version>
7+
<version>2.2.0</version>
88
<relativePath>../</relativePath>
99
</parent>
1010

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.esri.hadoop</groupId>
55
<artifactId>spatial-sdk-hadoop</artifactId>
6-
<version>2.1.1-SNAPSHOT</version>
6+
<version>2.2.0</version>
77
<packaging>pom</packaging>
88

99
<name>Spatial Framework for Hadoop</name>

0 commit comments

Comments
 (0)