Skip to content

Commit

Permalink
Bump JTS version to 1.20
Browse files Browse the repository at this point in the history
Trying to fix the issue 'Unable to find a convex corner'
  • Loading branch information
inigo-cobian committed Dec 9, 2024
1 parent 4d6d69d commit 060f3bd
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions klab.engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -329,9 +329,19 @@
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
</exclusion>
<exclusion>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
<version>${jts.version}</version>
</dependency>

<!-- all of a sudden, WCS parsing stops working unless this is added. -->
<dependency>
<groupId>xml-apis</groupId>
Expand Down Expand Up @@ -642,6 +652,12 @@
<groupId>org.orbisgis</groupId>
<artifactId>h2gis</artifactId>
<version>2.1.0</version>
<exclusions>
<exclusion>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- https://mvnrepository.com/artifact/args4j/args4j startup options parser -->
Expand Down Expand Up @@ -718,11 +734,23 @@
<groupId>org.geotools</groupId>
<artifactId>gt-process</artifactId>
<version>${geotools.version}</version>
<exclusions>
<exclusion>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-process-raster</artifactId>
<version>${geotools.version}</version>
<exclusions>
<exclusion>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
should be the same one that geotools and HM needs. -->
<geotools.version>28.0</geotools.version>
<hortonmachine.version>0.10.9-SNAPSHOT</hortonmachine.version>
<jts.version>1.18.1</jts.version>
<jts.version>1.20.0</jts.version>
<h2gis.version>1.5.0</h2gis.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
Expand Down

0 comments on commit 060f3bd

Please sign in to comment.