Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.3.0 window crash #15

Merged
merged 3 commits into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 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).

Tested with Apache Hop `2.10.0-SNAPSHOT`.
Tested with Apache Hop `2.10.0`.


Building the plugins
Expand Down Expand Up @@ -46,7 +46,7 @@ Extract the content of `gis-plugin-assemblies-X.X.X.zip` in `${HOP_HOME}/plugins
Examples of extraction from the root directory of the project :

```sh
GIS_PLUGINS_VERSION="1.3.0"
GIS_PLUGINS_VERSION="1.3.1"

# Use compiled version...
GIS_PLUGINS_ASSEMBLY="assemblies/target/gis-plugin-assemblies-${GIS_PLUGINS_VERSION}.zip"
Expand Down Expand Up @@ -81,7 +81,7 @@ See [dedicated page](docker/README.md)
Testing the plugins
---------------------

See [dedicated page](example/README.md)
See [dedicated page](examples/README.md)


Using the 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.3.0</version>
<version>1.3.1</version>
<packaging>pom</packaging>

<name>HOP GIS Plugins assemblies</name>

<parent>
<groupId>com.atolcd.hop</groupId>
<artifactId>hop-gis-plugins-holder</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion docker/hop-gis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Execute the script with the right HOP version, from the root dir:
```sh
# Read Hop version in pom.xml
HOP_VERSION=$(grep -Po '<hop:version>\K[^<]*</hop:version>' pom.xml)
# HOP_VERSION="2.10.0-SNAPSHOT"
# HOP_VERSION="2.10.0"

docker/hop-gis/build.sh ${HOP_VERSION}
```
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.3.0</version>
<version>1.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions 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.3.0</version>
<version>1.3.1</version>

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

<properties>
<!-- Set this to the Hop version you want to debug against-->
<hop.version>2.10.0-SNAPSHOT</hop.version>
<hop.version>2.10.0</hop.version>

<!-- Path You will be using to debug the application >
<hop.debug.path>TODO ?</hop.debug.path-->
Expand Down
Loading