Skip to content

Commit

Permalink
Resolved bug introduced in #259 which broke the geospatial queries wi…
Browse files Browse the repository at this point in the history
…th Elastic Search due to missing dependencies from the geotool suite.
  • Loading branch information
dclemenzi committed Jul 24, 2020
1 parent 618c97a commit db1cfa3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
6 changes: 6 additions & 0 deletions src/Coalesce.Bundles/bundle-geomesa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@
<version>${accumulo.geomesa.version}</version>
</dependency>
-->
<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
<version>1.16.1</version>
<scope>provided</scope>
</dependency>

</dependencies>

Expand Down
21 changes: 13 additions & 8 deletions src/Coalesce.Bundles/bundle-geotools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<!-- <SPI-Consumer>java.util.ServiceLoader#load(java.lang.Class[org.geotools.data.DataStoreFactorySpi])</SPI-Consumer> -->
<_noee>true</_noee>
</instructions>
</configuration>

Expand Down Expand Up @@ -101,9 +102,13 @@
<artifactId>gt-metadata</artifactId>
<version>${geotools.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-geojson</artifactId>
<version>${geotools.version}</version>
</dependency>

<!-- Requires Java 1.9 -->
<!--
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-imagemosaic</artifactId>
Expand All @@ -119,19 +124,19 @@
<artifactId>gt-process-feature</artifactId>
<version>${geotools.version}</version>
</dependency>
-->
<!-- INC version removes the Skunkwords class which is missing the packagename preventing the packages to be bundled into our bundle-geotool package for use within OSGi container using maven-bundle-plugin. -->
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-geojson</artifactId>
<version>15-INC</version>
</dependency>

<dependency>
<artifactId>joda-time</artifactId>
<groupId>joda-time</groupId>
<version>${joda.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
<version>1.16.1</version>
<scope>provided</scope>
</dependency>

</dependencies>
</project>

0 comments on commit db1cfa3

Please sign in to comment.