Skip to content

Commit

Permalink
IGNITE-22317 Set the Ignite Spring Data Extension 3.0.0 release versi…
Browse files Browse the repository at this point in the history
…on with 2.16.0 Apache Ignite
  • Loading branch information
nva committed Jun 17, 2024
1 parent 1aa52cf commit f7b33a7
Show file tree
Hide file tree
Showing 6 changed files with 82 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/prepare-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions modules/spring-data-ext/examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
<parent>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-spring-data-parent-ext</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ignite-spring-data-ext-examples</artifactId>
<version>${project.parent.version}</version>
<version>3.0.0</version>

<url>https://ignite.apache.org</url>

Expand Down
2 changes: 1 addition & 1 deletion modules/spring-data-ext/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<artifactId>ignite-spring-data-parent-ext</artifactId>
<packaging>pom</packaging>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>

<url>https://ignite.apache.org</url>

Expand Down
4 changes: 2 additions & 2 deletions modules/spring-data-ext/spring-data/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
<parent>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-spring-data-parent-ext</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>ignite-spring-data-ext</artifactId>
<version>${project.parent.version}</version>
<version>3.0.0</version>

<url>https://ignite.apache.org</url>

Expand Down
74 changes: 73 additions & 1 deletion parent-internal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<parent>
<groupId>org.apache.ignite</groupId>
<artifactId>ignite-parent</artifactId>
<version>2.17.0-SNAPSHOT</version>
<version>2.16.0</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>

Expand Down Expand Up @@ -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>
Expand Down Expand Up @@ -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>

0 comments on commit f7b33a7

Please sign in to comment.