Skip to content

Commit

Permalink
IGNITE-21096 Fix standalone examples compilation (#11103)
Browse files Browse the repository at this point in the history
  • Loading branch information
NSAmelchev authored Dec 15, 2023
1 parent 07e82f0 commit 8695fb0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 22 deletions.
6 changes: 6 additions & 0 deletions examples/pom-standalone-lgpl.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
6 changes: 6 additions & 0 deletions examples/pom-standalone.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
25 changes: 3 additions & 22 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 8695fb0

Please sign in to comment.