You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by na...@apache.org on 2023/12/15 20:06:16 UTC

(ignite) branch ignite-2.16 updated: IGNITE-21096 Fix standalone examples compilation (#11103)

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

namelchev pushed a commit to branch ignite-2.16
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/ignite-2.16 by this push:
     new 7bde6a42b7f IGNITE-21096 Fix standalone examples compilation (#11103)
7bde6a42b7f is described below

commit 7bde6a42b7fda05f8058350d30d67e57ada216d0
Author: Nikita Amelchev <ns...@gmail.com>
AuthorDate: Fri Dec 15 23:05:28 2023 +0300

    IGNITE-21096 Fix standalone examples compilation (#11103)
    
    (cherry picked from commit 8695fb08cbb6c55e9c417348f36ad08c4a452d59)
---
 examples/pom-standalone-lgpl.xml |  6 ++++++
 examples/pom-standalone.xml      |  6 ++++++
 examples/pom.xml                 | 25 +++----------------------
 3 files changed, 15 insertions(+), 22 deletions(-)

diff --git a/examples/pom-standalone-lgpl.xml b/examples/pom-standalone-lgpl.xml
index 67969815bec..6cc95816706 100644
--- a/examples/pom-standalone-lgpl.xml
+++ b/examples/pom-standalone-lgpl.xml
@@ -120,6 +120,12 @@
             <artifactId>ignite-kubernetes</artifactId>
             <version>to_be_replaced_by_ignite_version</version>
         </dependency>
+
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.11.0</version>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/examples/pom-standalone.xml b/examples/pom-standalone.xml
index 67969815bec..6cc95816706 100644
--- a/examples/pom-standalone.xml
+++ b/examples/pom-standalone.xml
@@ -120,6 +120,12 @@
             <artifactId>ignite-kubernetes</artifactId>
             <version>to_be_replaced_by_ignite_version</version>
         </dependency>
+
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.11.0</version>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/examples/pom.xml b/examples/pom.xml
index c350b42b73f..5746944a269 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -142,31 +142,12 @@
             <artifactId>javassist</artifactId>
             <version>${javassist.version}</version>
         </dependency>
-        <!-- https://mvnrepository.com/artifact/org.jpmml/pmml-model -->
-        <dependency>
-            <groupId>org.jpmml</groupId>
-            <artifactId>pmml-model</artifactId>
-            <version>1.4.7</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.parquet</groupId>
-            <artifactId>parquet-hadoop</artifactId>
-            <version>1.10.0</version>
-        </dependency>
 
         <dependency>
-            <groupId>org.apache.hadoop</groupId>
-            <artifactId>hadoop-common</artifactId>
-            <version>2.9.1</version>
-            <exclusions>
-                <exclusion>
-                    <groupId>com.google.protobuf</groupId>
-                    <artifactId>protobuf-java</artifactId>
-                </exclusion>
-            </exclusions>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.11.0</version>
         </dependency>
-
     </dependencies>
 
     <properties>