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/12/29 11:49:48 UTC

[ignite-extensions] branch master updated: IGNITE-5713 Add explicit ignite-indexing module dependency - Fixes #201.

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-extensions.git


The following commit(s) were added to refs/heads/master by this push:
     new 4350210b IGNITE-5713 Add explicit ignite-indexing module dependency - Fixes #201.
4350210b is described below

commit 4350210b4b3993a7ec1573acb3f7279747c37627
Author: Aleksey Plekhanov <pl...@gmail.com>
AuthorDate: Thu Dec 29 14:48:49 2022 +0300

    IGNITE-5713 Add explicit ignite-indexing module dependency - Fixes #201.
    
    Signed-off-by: Aleksey Plekhanov <pl...@gmail.com>
---
 modules/cdc-ext/pom.xml                 | 6 ++++++
 modules/spring-tx-ext/examples/pom.xml  | 6 ++++++
 modules/spring-tx-ext/spring-tx/pom.xml | 6 ++++++
 3 files changed, 18 insertions(+)

diff --git a/modules/cdc-ext/pom.xml b/modules/cdc-ext/pom.xml
index b4690566..7d34e450 100644
--- a/modules/cdc-ext/pom.xml
+++ b/modules/cdc-ext/pom.xml
@@ -63,6 +63,12 @@
             <scope>test</scope>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.ignite</groupId>
+            <artifactId>ignite-indexing</artifactId>
+            <scope>test</scope>
+        </dependency>
+
         <dependency>
             <groupId>org.apache.ignite</groupId>
             <artifactId>ignite-core</artifactId>
diff --git a/modules/spring-tx-ext/examples/pom.xml b/modules/spring-tx-ext/examples/pom.xml
index 8b2dc50d..463819b6 100644
--- a/modules/spring-tx-ext/examples/pom.xml
+++ b/modules/spring-tx-ext/examples/pom.xml
@@ -48,6 +48,12 @@
             <version>${ignite.version}</version>
         </dependency>
 
+        <dependency>
+            <groupId>com.h2database</groupId>
+            <artifactId>h2</artifactId>
+            <version>${h2.version}</version>
+        </dependency>
+
         <dependency>
             <groupId>org.apache.ignite</groupId>
             <artifactId>ignite-spring</artifactId>
diff --git a/modules/spring-tx-ext/spring-tx/pom.xml b/modules/spring-tx-ext/spring-tx/pom.xml
index b89f60e4..926a4219 100644
--- a/modules/spring-tx-ext/spring-tx/pom.xml
+++ b/modules/spring-tx-ext/spring-tx/pom.xml
@@ -86,6 +86,12 @@
             <scope>test</scope>
         </dependency>
 
+        <dependency>
+            <groupId>org.apache.ignite</groupId>
+            <artifactId>ignite-indexing</artifactId>
+            <scope>test</scope>
+        </dependency>
+
         <dependency>
             <groupId>com.thoughtworks.xstream</groupId>
             <artifactId>xstream</artifactId>