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 2021/10/26 14:07:52 UTC

[ignite-extensions] branch ignite-spring-tx-cache-ext-1.0 updated: IGNITE-15825 Fix the artifactId and parent reference of spring-sessions extension (#82)

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

namelchev pushed a commit to branch ignite-spring-tx-cache-ext-1.0
in repository https://gitbox.apache.org/repos/asf/ignite-extensions.git


The following commit(s) were added to refs/heads/ignite-spring-tx-cache-ext-1.0 by this push:
     new 7ddc5a9  IGNITE-15825 Fix the artifactId and parent reference of spring-sessions extension (#82)
7ddc5a9 is described below

commit 7ddc5a99b8f30f91eb16f77ec4c18d0737e459ab
Author: Nikita Amelchev <ns...@gmail.com>
AuthorDate: Tue Oct 26 16:41:32 2021 +0300

    IGNITE-15825 Fix the artifactId and parent reference of spring-sessions extension (#82)
    
    (cherry picked from commit d311b498f4f404992e79eefc0388a3b47c4f764e)
---
 modules/spring-session-ext/pom.xml | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/modules/spring-session-ext/pom.xml b/modules/spring-session-ext/pom.xml
index f9b4320..2d22b43 100644
--- a/modules/spring-session-ext/pom.xml
+++ b/modules/spring-session-ext/pom.xml
@@ -20,15 +20,18 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
     <parent>
-        <artifactId>apache-ignite-extensions</artifactId>
         <groupId>org.apache.ignite</groupId>
-        <version>1.0.0-SNAPSHOT</version>
-        <relativePath>../../pom.xml</relativePath>
+        <artifactId>ignite-extensions-parent</artifactId>
+        <version>1</version>
+        <relativePath>../../parent</relativePath>
     </parent>
-    <modelVersion>4.0.0</modelVersion>
 
-    <artifactId>spring-session-ext</artifactId>
+    <artifactId>ignite-spring-session-ext</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+    <url>http://ignite.apache.org</url>
 
     <properties>
         <ignite.version>2.10.0</ignite.version>