Skip to content

Commit d8f308c

Browse files
committed
chore: bump to 1.4.0 with compatibility with Hop 2.14.0
1 parent 04b4f5a commit d8f308c

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Apache Hop GIS Plugins
33

44
This project allows you to manage GIS data in Apache Hop, [Hop Orchestration Platform](https://hop.apache.org/). It is a counterpart of [Pentaho Data Integrator GIS Plugins](https://github.com/atolcd/pentaho-gis-plugins).
55

6-
Tested with Apache Hop `2.10.0`.
6+
Tested with Apache Hop `2.14.0`.
77

88

99
Building the plugins
@@ -29,7 +29,7 @@ docker run --network="host" --rm \
2929
-v ~/.m2:/var/maven/.m2 -v "${HOME}":/var/maven \
3030
-e HOME=/var/maven -e MAVEN_CONFIG=/var/maven/.m2 -e MAVEN_OPTS="-Duser.home=/var/maven" \
3131
\
32-
maven:3.9.7-eclipse-temurin-17 \
32+
maven:3-eclipse-temurin-17 \
3333
\
3434
mvn clean package
3535
```
@@ -46,7 +46,7 @@ Extract the content of `gis-plugin-assemblies-X.X.X.zip` in `${HOP_HOME}/plugins
4646
Examples of extraction from the root directory of the project :
4747

4848
```sh
49-
GIS_PLUGINS_VERSION="1.3.1"
49+
GIS_PLUGINS_VERSION="1.4.0"
5050

5151
# Use compiled version...
5252
GIS_PLUGINS_ASSEMBLY="assemblies/target/gis-plugin-assemblies-${GIS_PLUGINS_VERSION}.zip"
@@ -163,7 +163,7 @@ LICENSE
163163
This extension is licensed under `GNU Library or "Lesser" General Public License (LGPL)`.
164164

165165
Contributors :
166-
* [Bart Maertens](https://github.com/bamaer) 2.7.0+ compatibility
166+
* [Bart Maertens](https://github.com/bamaer) compatibility/version upgrades and cleaning
167167
* [Marc Lherbette](https://github.com/scali) examples and metadata
168168
* [Matt Casters](https://github.com/mattcasters) review, cleanup, metadata
169169
* [Jérémy Tridard](https://github.com/jtridard) rewrite [pentaho-gis-plugins](https://github.com/atolcd/pentaho-gis-plugins) for hop

assemblies/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
<groupId>com.atolcd.hop</groupId>
66
<artifactId>gis-plugin-assemblies</artifactId>
7-
<version>1.3.1</version>
7+
<version>1.4.0</version>
88
<packaging>pom</packaging>
99

1010
<name>HOP GIS Plugins assemblies</name>
1111

1212
<parent>
1313
<groupId>com.atolcd.hop</groupId>
1414
<artifactId>hop-gis-plugins-holder</artifactId>
15-
<version>1.3.1</version>
15+
<version>1.4.0</version>
1616
</parent>
1717

1818
<properties>

docker/hop-gis/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
ARG HOP_VERSION=2.6.0
1+
ARG HOP_VERSION=2.14.0
22
# --------------------
33
# Build artefacts - hop-gis-plugins
44
# --------------------
5-
FROM maven:3.9.7-eclipse-temurin-17 as builder
5+
FROM maven:3-eclipse-temurin-17 as builder
66
WORKDIR /app
77
USER root
88
COPY . /app

docker/hop-gis/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Execute the script with the right HOP version, from the root dir:
44
```sh
55
# Read Hop version in pom.xml
66
HOP_VERSION=$(grep -Po '<hop:version>\K[^<]*</hop:version>' pom.xml)
7-
# HOP_VERSION="2.10.0"
7+
# HOP_VERSION="2.14.0"
88

99
docker/hop-gis/build.sh ${HOP_VERSION}
1010
```

hop-gis-plugins/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>hop-gis-plugins-holder</artifactId>
55
<groupId>com.atolcd.hop</groupId>
6-
<version>1.3.1</version>
6+
<version>1.4.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.atolcd.hop</groupId>
66
<artifactId>hop-gis-plugins-holder</artifactId>
77
<packaging>pom</packaging>
8-
<version>1.3.1</version>
8+
<version>1.4.0</version>
99

1010
<name>HOP GIS Plugins and modified deps</name>
1111
<description>HOP GIS Plugins and modified deps by Atol Conseils &amp; Développements</description>
@@ -14,7 +14,7 @@
1414

1515
<properties>
1616
<!-- Set this to the Hop version you want to debug against-->
17-
<hop.version>2.13.0</hop.version>
17+
<hop.version>2.14.0</hop.version>
1818

1919
<!-- Path You will be using to debug the application >
2020
<hop.debug.path>TODO ?</hop.debug.path-->

0 commit comments

Comments
 (0)