diff --git a/README.md b/README.md
index 5fca6fc..0a28958 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ Apache Hop GIS Plugins
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).
-Works with Apache Hop `1.0-SNAPSHOT`.
+Tested with Apache Hop `0.99`, `1.1.0` and `2.0.0-SNAPSHOT`.
Building the plugins
@@ -34,7 +34,7 @@ docker run --network="host" --rm \
mvn clean package
```
-The built package is `assemblies/target/gis-plugin-assemblies-1.0-SNAPSHOT.zip` (version can differ).
+The built package is `assemblies/target/gis-plugin-assemblies-X.X.X.zip` (version can differ).
Installing/upgrading the module
@@ -42,16 +42,18 @@ Installing/upgrading the module
***Method 1 : Manual installation***
-Extract the content of `assemblies-gis-plugins-1.0-SNAPSHOT.zip` in ${HOP_HOME}/plugins.
+Extract the content of `assemblies-gis-plugins-X.X.X.zip` in ${HOP_HOME}/plugins.
Examples of extraction from the root directory of the project :
```sh
+GIS_PLUGINS_VERSION="1.0.0"
+
# Use compiled version...
-GIS_PLUGINS_ASSEMBLY="assemblies/target/gis-plugin-assemblies-1.0-SNAPSHOT.zip"
+GIS_PLUGINS_ASSEMBLY="assemblies/target/gis-plugin-assemblies-${GIS_PLUGINS_VERSION}.zip"
# ... Or download a prepared one (must exist :)
-wget https://github.com/atolcd/hop-gis-plugins/releases/download/v1.0-SNAPSHOT/assemblies-gis-plugins-1.0-SNAPSHOT.zip
-GIS_PLUGINS_ASSEMBLY="assemblies-gis-plugins-1.0-SNAPSHOT.zip"
+wget https://github.com/atolcd/hop-gis-plugins/releases/download/v${GIS_PLUGINS_VERSION}/assemblies-gis-plugins-${GIS_PLUGINS_VERSION}.zip
+GIS_PLUGINS_ASSEMBLY="assemblies-gis-plugins-${GIS_PLUGINS_VERSION}.zip"
# Unzip it ate the right place !
unzip ${GIS_PLUGINS_ASSEMBLY} -d ${HOP_HOME}/plugins/
diff --git a/assemblies/pom.xml b/assemblies/pom.xml
index 9938e0c..363e323 100644
--- a/assemblies/pom.xml
+++ b/assemblies/pom.xml
@@ -4,7 +4,7 @@
com.atolcd.hop
gis-plugin-assemblies
- 1.0-SNAPSHOT
+ 1.0.0
pom
HOP GIS Plugins assemblies
@@ -12,7 +12,7 @@
com.atolcd.hop
hop-gis-plugins-holder
- 1.0-SNAPSHOT
+ 1.0.0
diff --git a/hop-gis-plugins/pom.xml b/hop-gis-plugins/pom.xml
index 7de6609..978289b 100644
--- a/hop-gis-plugins/pom.xml
+++ b/hop-gis-plugins/pom.xml
@@ -3,7 +3,7 @@
hop-gis-plugins-holder
com.atolcd.hop
- 1.0-SNAPSHOT
+ 1.0.0
4.0.0
diff --git a/pom.xml b/pom.xml
index d48309c..3e83468 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
com.atolcd.hop
hop-gis-plugins-holder
pom
- 1.0-SNAPSHOT
+ 1.0.0
HOP GIS Plugins and modified deps
HOP GIS Plugins and modified deps by Atol Conseils & Développements