Skip to content

Commit

Permalink
Merge pull request #1407 from orbisgis/flatgeobuff-transitive
Browse files Browse the repository at this point in the history
Fix duplicate dependency version issue (JTS 1.19 and 1.20)
  • Loading branch information
ebocher authored Feb 7, 2025
2 parents b318e17 + e3e606b commit d22f414
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@
- Fix bug when read GeometryCollection with the ST_GeomFromGeoJSON function
- Fix github actions
- Fix mixed srid error on empty geometry with ST_Extent #1400
- Remove transitive dependency from flatgeobuffer to JTS version 1.19 (should use 1.20 of jts-core)

6 changes: 6 additions & 0 deletions h2gis-functions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@
<dependency>
<groupId>org.wololo</groupId>
<artifactId>flatgeobuf</artifactId>
<exclusions>
<exclusion>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit d22f414

Please sign in to comment.