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 2023/08/11 09:08:04 UTC

[ignite] branch master updated: IGNITE-20194 SQL Calcite: Add explicit commons-codec dependency - Fixes #10889.

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 b3c45992447 IGNITE-20194 SQL Calcite: Add explicit commons-codec dependency - Fixes #10889.
b3c45992447 is described below

commit b3c4599244770c928c712a8e39ad4368a530f8ba
Author: Aleksey Plekhanov <pl...@gmail.com>
AuthorDate: Fri Aug 11 12:05:28 2023 +0300

    IGNITE-20194 SQL Calcite: Add explicit commons-codec dependency - Fixes #10889.
    
    Signed-off-by: Aleksey Plekhanov <pl...@gmail.com>
---
 modules/calcite/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/modules/calcite/pom.xml b/modules/calcite/pom.xml
index fd5b57772dc..2090cb2d855 100644
--- a/modules/calcite/pom.xml
+++ b/modules/calcite/pom.xml
@@ -152,6 +152,12 @@
             <version>1.19.0</version>
         </dependency>
 
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+            <version>${commons.codec.version}</version>
+        </dependency>
+
         <dependency>
             <groupId>org.immutables</groupId>
             <artifactId>value</artifactId>