Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
Change-Id: Ifdfa669a91477478e48290813fbde8a0c3d4434f
  • Loading branch information
cvagner committed Jan 31, 2022
1 parent c7130be commit 5cb935d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -34,24 +34,26 @@ 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
---------------------

***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/
Expand Down
4 changes: 2 additions & 2 deletions assemblies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

<groupId>com.atolcd.hop</groupId>
<artifactId>gis-plugin-assemblies</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<name>HOP GIS Plugins assemblies</name>

<parent>
<groupId>com.atolcd.hop</groupId>
<artifactId>hop-gis-plugins-holder</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion hop-gis-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>hop-gis-plugins-holder</artifactId>
<groupId>com.atolcd.hop</groupId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.atolcd.hop</groupId>
<artifactId>hop-gis-plugins-holder</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<version>1.0.0</version>

<name>HOP GIS Plugins and modified deps</name>
<description>HOP GIS Plugins and modified deps by Atol Conseils &amp; D茅veloppements</description>
Expand Down

0 comments on commit 5cb935d

Please sign in to comment.