You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by al...@apache.org on 2022/06/02 13:41:25 UTC

[ignite] branch master updated: IGNITE-16901 Add slf4j dependency to the Calcite module - Fixes #10061.

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

alexpl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 39d43efac68 IGNITE-16901 Add slf4j dependency to the Calcite module - Fixes #10061.
39d43efac68 is described below

commit 39d43efac6836dea5ae5373ea9ab85a9cd0b5dd4
Author: Aleksey Plekhanov <pl...@gmail.com>
AuthorDate: Thu Jun 2 16:39:45 2022 +0300

    IGNITE-16901 Add slf4j dependency to the Calcite module - Fixes #10061.
    
    Signed-off-by: Aleksey Plekhanov <pl...@gmail.com>
---
 docs/_docs/SQL/sql-calcite.adoc | 2 +-
 modules/calcite/pom.xml         | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/docs/_docs/SQL/sql-calcite.adoc b/docs/_docs/SQL/sql-calcite.adoc
index 8cbb2af8db9..ac9f728b929 100644
--- a/docs/_docs/SQL/sql-calcite.adoc
+++ b/docs/_docs/SQL/sql-calcite.adoc
@@ -30,7 +30,7 @@ CAUTION: Currently, a part of the `ignite-indexing` module functionality is reus
 
 === Standalone Mode
 
-When starting a standalone node, move `optional/ignite-calcite` and `optional/ignite-slf4j` folders to the `libs` folder before running `ignite.{sh|bat}` script. In this case, the content of the module folder is added to the classpath.
+When starting a standalone node, move `optional/ignite-calcite` folder to the `libs` folder before running `ignite.{sh|bat}` script. In this case, the content of the module folder is added to the classpath.
 
 === Maven Configuration
 
diff --git a/modules/calcite/pom.xml b/modules/calcite/pom.xml
index 3ffff857641..eaa8ff60bdb 100644
--- a/modules/calcite/pom.xml
+++ b/modules/calcite/pom.xml
@@ -147,6 +147,12 @@
             <version>${esri.geometry.version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <version>${slf4j.version}</version>
+        </dependency>
+
         <dependency>
             <groupId>org.immutables</groupId>
             <artifactId>value</artifactId>