You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by tl...@apache.org on 2021/07/19 06:50:16 UTC

[ignite-3] branch main updated: IGNITE-15076 Calcite. Correct additional calcite dependencies. (#204)

This is an automated email from the ASF dual-hosted git repository.

tledkov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new eb0980a  IGNITE-15076 Calcite. Correct additional calcite dependencies. (#204)
eb0980a is described below

commit eb0980ad50d93e878665fe9cc755208123eec413
Author: Evgeniy Stanilovskiy <st...@gmail.com>
AuthorDate: Mon Jul 19 09:50:11 2021 +0300

    IGNITE-15076 Calcite. Correct additional calcite dependencies. (#204)
---
 modules/calcite/pom.xml | 5 +++++
 parent/pom.xml          | 9 ++++++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/modules/calcite/pom.xml b/modules/calcite/pom.xml
index c44ae05..833930a 100644
--- a/modules/calcite/pom.xml
+++ b/modules/calcite/pom.xml
@@ -110,6 +110,11 @@
             <artifactId>esri-geometry-api</artifactId>
         </dependency>
 
+        <dependency>
+            <groupId>org.checkerframework</groupId>
+            <artifactId>checker-qual</artifactId>
+        </dependency>
+
         <!-- Test dependencies. -->
         <dependency>
             <groupId>org.junit.jupiter</groupId>
diff --git a/parent/pom.xml b/parent/pom.xml
index 9a38536..d59ecdf 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -79,7 +79,8 @@
         <jsonpath.version>2.4.0</jsonpath.version>
         <reflections.version>0.9.10</reflections.version>
         <javassist.version>3.28.0-GA</javassist.version>
-        <esri.geometry.version>2.2.3</esri.geometry.version>
+        <esri.geometry.version>2.2.0</esri.geometry.version>
+        <checker.version>3.10.0</checker.version>
         <rocksdb.version>6.20.3</rocksdb.version>
         <disruptor.version>3.3.7</disruptor.version>
         <metrics.version>4.0.2</metrics.version>
@@ -358,6 +359,12 @@
             </dependency>
 
             <dependency>
+                <groupId>org.checkerframework</groupId>
+                <artifactId>checker-qual</artifactId>
+                <version>${checker.version}</version>
+            </dependency>
+
+            <dependency>
                 <groupId>org.apache.ivy</groupId>
                 <artifactId>ivy</artifactId>
                 <version>${apache.ivy.version}</version>