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

anovikov 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 49cec553 IGNITE-22317 Update version of the released 
ignite-spring-data, ignite-spring-session, ignite-spring-cache and 
ignite-spring-tx extensions.
49cec553 is described below

commit 49cec55354df85ad592ed14d28d2e1dda53e072b
Author: Andrey Novikov <[email protected]>
AuthorDate: Mon Jul 1 15:38:25 2024 +0700

    IGNITE-22317 Update version of the released ignite-spring-data, 
ignite-spring-session, ignite-spring-cache and ignite-spring-tx extensions.
---
 .github/workflows/prepare-rc.yml                   |  6 +-
 .github/workflows/release-checker.yml              |  2 +-
 modules/spring-cache-ext/RELEASE_NOTES.txt         |  5 ++
 modules/spring-cache-ext/pom.xml                   |  7 +++
 .../spring-data-ext/spring-data/RELEASE_NOTES.txt  |  5 ++
 modules/spring-session-ext/RELEASE_NOTES.txt       |  6 ++
 modules/spring-tx-ext/spring-tx/RELEASE_NOTES.txt  |  5 ++
 modules/spring-tx-ext/spring-tx/pom.xml            |  7 +++
 parent-internal/pom.xml                            | 72 ++++++++++++++++++++++
 9 files changed, 111 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/prepare-rc.yml b/.github/workflows/prepare-rc.yml
index a11eecec..873836a6 100644
--- a/.github/workflows/prepare-rc.yml
+++ b/.github/workflows/prepare-rc.yml
@@ -39,7 +39,7 @@ jobs:
     steps:
       - name: Validate Extension Release Branch
         id: check
-        run: | 
+        run: |
           prefix='false'
           [[ ${{ github.ref_name }} =~ ^release/ ]] && prefix='true'
           echo "::set-output name=isReleaseBranch::${prefix}"
@@ -82,7 +82,7 @@ jobs:
       - name: Set up Java
         uses: actions/setup-java@v2
         with:
-          java-version: 8
+          java-version: 17
           distribution: 'adopt'
 
       - name: Extract POM Version and Compare With Branch Version
@@ -136,7 +136,7 @@ jobs:
       - name: Build Java and Prepare Packages
         run: |
           cd ${{ env.GIT_HOME }}/${{ env.EXTENSION_DIR }}
-          mvn deploy -am -DskipTests -Pextension-release -DuniqueVersion=false 
${toLocalRepo} 
+          mvn deploy -am -DskipTests -Pextension-release -DuniqueVersion=false 
${toLocalRepo}
           cd -
         env:
           toLocalRepo: '-D altDeploymentRepository=local::default::file:${{ 
env.EXTENSION_DIST }}/maven'
diff --git a/.github/workflows/release-checker.yml 
b/.github/workflows/release-checker.yml
index 202109c9..1cfc1383 100644
--- a/.github/workflows/release-checker.yml
+++ b/.github/workflows/release-checker.yml
@@ -74,7 +74,7 @@ jobs:
       - name: Set up Java
         uses: actions/setup-java@v2
         with:
-          java-version: 8
+          java-version: 17
           distribution: 'adopt'
 
       - name: Extract Branch POM Version and Compare
diff --git a/modules/spring-cache-ext/RELEASE_NOTES.txt 
b/modules/spring-cache-ext/RELEASE_NOTES.txt
index e60dd23a..55fa6c6a 100644
--- a/modules/spring-cache-ext/RELEASE_NOTES.txt
+++ b/modules/spring-cache-ext/RELEASE_NOTES.txt
@@ -1,6 +1,11 @@
 Apache Ignite Extensions Release Notes
 ===========================
 
+Apache Ignite Spring Cache Module 2.0.0
+--------------------------------------
+
+* Add Spring 6 support.
+
 Apache Ignite Spring Cache Module 1.0.0
 ---------------------------------------
 
diff --git a/modules/spring-cache-ext/pom.xml b/modules/spring-cache-ext/pom.xml
index c9f8ad6c..8dec36ea 100644
--- a/modules/spring-cache-ext/pom.xml
+++ b/modules/spring-cache-ext/pom.xml
@@ -131,6 +131,13 @@
                     <forkCount>1</forkCount>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>false</skip>
+                </configuration>
+            </plugin>
         </plugins>
 
         <testResources>
diff --git a/modules/spring-data-ext/spring-data/RELEASE_NOTES.txt 
b/modules/spring-data-ext/spring-data/RELEASE_NOTES.txt
index dc4628e3..88926083 100644
--- a/modules/spring-data-ext/spring-data/RELEASE_NOTES.txt
+++ b/modules/spring-data-ext/spring-data/RELEASE_NOTES.txt
@@ -1,6 +1,11 @@
 Apache Ignite Extensions Release Notes
 ======================================
 
+Apache Ignite Spring Data Module 3.0.0
+--------------------------------------
+
+* Add Spring 6 support.
+
 Apache Ignite Spring Data Module 2.0.0
 --------------------------------------
 
diff --git a/modules/spring-session-ext/RELEASE_NOTES.txt 
b/modules/spring-session-ext/RELEASE_NOTES.txt
index f5066b22..22d56a0b 100644
--- a/modules/spring-session-ext/RELEASE_NOTES.txt
+++ b/modules/spring-session-ext/RELEASE_NOTES.txt
@@ -1,6 +1,12 @@
 Apache Ignite Extensions Release Notes
 ======================================
 
+Apache Ignite Spring Session Module 2.0.0
+--------------------------------------
+
+* Add Spring 6 support.
+* Fixed StackOverflow error during IgniteSession serialization.
+
 Apache Ignite Spring Session Module 1.0.0
 -----------------------------------------
 
diff --git a/modules/spring-tx-ext/spring-tx/RELEASE_NOTES.txt 
b/modules/spring-tx-ext/spring-tx/RELEASE_NOTES.txt
index 834f3dd3..8de3fd76 100644
--- a/modules/spring-tx-ext/spring-tx/RELEASE_NOTES.txt
+++ b/modules/spring-tx-ext/spring-tx/RELEASE_NOTES.txt
@@ -1,6 +1,11 @@
 Apache Ignite Extensions Release Notes
 ======================================
 
+Apache Ignite Spring Transactions Module 2.0.0
+--------------------------------------
+
+* Add Spring 6 support.
+
 Apache Ignite Spring Transactions Module 1.0.0
 ----------------------------------------------
 
diff --git a/modules/spring-tx-ext/spring-tx/pom.xml 
b/modules/spring-tx-ext/spring-tx/pom.xml
index 70d1781b..6ee59489 100644
--- a/modules/spring-tx-ext/spring-tx/pom.xml
+++ b/modules/spring-tx-ext/spring-tx/pom.xml
@@ -144,6 +144,13 @@
                     <forkCount>1</forkCount>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>false</skip>
+                </configuration>
+            </plugin>
         </plugins>
 
         <testResources>
diff --git a/parent-internal/pom.xml b/parent-internal/pom.xml
index 9f485090..e5a58434 100644
--- a/parent-internal/pom.xml
+++ b/parent-internal/pom.xml
@@ -99,6 +99,27 @@
     </dependencies>
 
     <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-javadoc-plugin</artifactId>
+                    <configuration>
+                        
<doclet>capital.scalable.restdocs.jsondoclet.ExtractDocumentationAsJsonDoclet</doclet>
+                        <docletArtifact>
+                            <groupId>capital.scalable</groupId>
+                            
<artifactId>spring-auto-restdocs-json-doclet-jdk9</artifactId>
+                            <version>2.0.11</version>
+                        </docletArtifact>
+                        <destDir>generated-javadoc-json</destDir>
+                        
<reportOutputDirectory>${basedir}${docDirectory}/report</reportOutputDirectory>
+                        
<useStandardDocletOptions>false</useStandardDocletOptions>
+                        <show>package</show>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
+
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
@@ -286,5 +307,56 @@
                 </plugins>
             </build>
         </profile>
+        <profile>
+            <id>tools.jar-default</id>
+            <activation>
+                <file>
+                    <exists>${java.home}/../lib/tools.jar</exists>
+                </file>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>com.sun</groupId>
+                    <artifactId>tools</artifactId>
+                    <scope>system</scope>
+                    <version>${java.version}</version>
+                    <systemPath>${java.home}/../lib/tools.jar</systemPath>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>tools.jar-mac</id>
+            <activation>
+                <file>
+                    <exists>${java.home}/../Classes/classes.jar</exists>
+                </file>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>com.sun</groupId>
+                    <artifactId>tools</artifactId>
+                    <scope>system</scope>
+                    <version>${java.version}</version>
+                    
<systemPath>${java.home}/../Classes/classes.jar</systemPath>
+                </dependency>
+            </dependencies>
+        </profile>
+        <profile>
+            <id>tools.jar-j9</id>
+            <activation>
+                <file>
+                    <exists>${java.home}/lib/tools.jar</exists>
+                </file>
+            </activation>
+            <dependencies>
+                <dependency>
+                    <groupId>com.sun</groupId>
+                    <artifactId>tools</artifactId>
+                    <scope>system</scope>
+                    <version>${java.version}</version>
+                    <systemPath>${java.home}/lib/tools.jar</systemPath>
+                </dependency>
+            </dependencies>
+        </profile>
     </profiles>
 </project>

Reply via email to