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

mmuzaf 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 c91aa13  IGNITE-16927 Changes scope of spring-data-commons dependency 
to provided scope. (#136)
c91aa13 is described below

commit c91aa13c4411596d286fa9e81c0b103e4415127f
Author: Mikhail Petrov <32207922+ololo3...@users.noreply.github.com>
AuthorDate: Fri May 13 11:06:56 2022 +0300

    IGNITE-16927 Changes scope of spring-data-commons dependency to provided 
scope. (#136)
---
 .../spring-boot-autoconfigure/pom.xml                              | 7 +++++++
 .../spring-boot-thin-client-autoconfigure/pom.xml                  | 7 +++++++
 modules/spring-data-ext/pom.xml                                    | 4 ----
 modules/spring-data-ext/spring-data/pom.xml                        | 1 +
 parent-internal/pom.xml                                            | 1 +
 5 files changed, 16 insertions(+), 4 deletions(-)

diff --git 
a/modules/spring-boot-autoconfigure-ext/spring-boot-autoconfigure/pom.xml 
b/modules/spring-boot-autoconfigure-ext/spring-boot-autoconfigure/pom.xml
index df20b98..b90af97 100644
--- a/modules/spring-boot-autoconfigure-ext/spring-boot-autoconfigure/pom.xml
+++ b/modules/spring-boot-autoconfigure-ext/spring-boot-autoconfigure/pom.xml
@@ -63,6 +63,13 @@
             <optional>true</optional>
         </dependency>
 
+        <dependency>
+            <groupId>org.springframework.data</groupId>
+            <artifactId>spring-data-commons</artifactId>
+            <version>${spring.data.version}</version>
+            <optional>true</optional>
+        </dependency>
+
         <dependency>
             <groupId>org.springframework</groupId>
             <artifactId>spring-tx</artifactId>
diff --git 
a/modules/spring-boot-thin-client-autoconfigure-ext/spring-boot-thin-client-autoconfigure/pom.xml
 
b/modules/spring-boot-thin-client-autoconfigure-ext/spring-boot-thin-client-autoconfigure/pom.xml
index d85c309..305cc02 100644
--- 
a/modules/spring-boot-thin-client-autoconfigure-ext/spring-boot-thin-client-autoconfigure/pom.xml
+++ 
b/modules/spring-boot-thin-client-autoconfigure-ext/spring-boot-thin-client-autoconfigure/pom.xml
@@ -64,6 +64,13 @@
             <optional>true</optional>
         </dependency>
 
+        <dependency>
+            <groupId>org.springframework.data</groupId>
+            <artifactId>spring-data-commons</artifactId>
+            <version>${spring.data.version}</version>
+            <optional>true</optional>
+        </dependency>
+
         <dependency>
             <groupId>org.springframework</groupId>
             <artifactId>spring-tx</artifactId>
diff --git a/modules/spring-data-ext/pom.xml b/modules/spring-data-ext/pom.xml
index 3514933..bfc0721 100644
--- a/modules/spring-data-ext/pom.xml
+++ b/modules/spring-data-ext/pom.xml
@@ -35,10 +35,6 @@
 
     <url>https://ignite.apache.org</url>
 
-    <properties>
-        <spring.data.version>2.2.13.RELEASE</spring.data.version>
-    </properties>
-
     <modules>
         <module>spring-data</module>
         <module>examples</module>
diff --git a/modules/spring-data-ext/spring-data/pom.xml 
b/modules/spring-data-ext/spring-data/pom.xml
index 70ddd33..048391b 100644
--- a/modules/spring-data-ext/spring-data/pom.xml
+++ b/modules/spring-data-ext/spring-data/pom.xml
@@ -72,6 +72,7 @@
             <groupId>org.springframework.data</groupId>
             <artifactId>spring-data-commons</artifactId>
             <version>${spring.data.version}</version>
+            <scope>provided</scope>
             <!-- Exclude slf4j logging in favor of log4j -->
             <exclusions>
                 <exclusion>
diff --git a/parent-internal/pom.xml b/parent-internal/pom.xml
index 217dc1b..92f82b0 100644
--- a/parent-internal/pom.xml
+++ b/parent-internal/pom.xml
@@ -36,6 +36,7 @@
 
     <properties>
         <spring-boot.version>2.2.13.RELEASE</spring-boot.version>
+        <spring.data.version>2.2.13.RELEASE</spring.data.version>
         <spring53.version>5.3.19</spring53.version>
 
         <!--

Reply via email to