Skip to content

Commit 2388f46

Browse files
committed
Merge branch 'develop'
2 parents 5432f99 + aa2229b commit 2388f46

File tree

7 files changed

+22
-13
lines changed

7 files changed

+22
-13
lines changed

.github/workflows/maven-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
java: [11, 17, 21]
18+
java: [17, 21]
1919
os: [ubuntu-latest]
2020
distribution: [temurin]
2121

2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: Setup JDK
27-
uses: actions/setup-java@v4
27+
uses: actions/setup-java@v5
2828
with:
2929
distribution: ${{ matrix.distribution }}
3030
java-version: ${{ matrix.java }}

.github/workflows/maven-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ jobs:
1717

1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121

2222
- name: Configure GIT
2323
run: |
2424
git config --global user.email "${{ secrets.GH_SITE_DEPLOY_EMAIL }}"
2525
git config --global user.name "${{ secrets.GH_SITE_DEPLOY_NAME }}"
2626
2727
- name: Setup JDK
28-
uses: actions/setup-java@v4
28+
uses: actions/setup-java@v5
2929
with:
3030
distribution: temurin
31-
java-version: 11
31+
java-version: 17
3232
cache: maven
3333

3434
- name: Build, verify, deploy, generate site

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<img src="https://wcm.io/images/[email protected]"/> wcm.io DevOps Tooling
22
======
3-
[![Build](https://github.com/wcm-io-devops/devops-tooling/workflows/Build/badge.svg?branch=develop)](https://github.com/wcm-io-devops/devops-tooling/actions?query=workflow%3ABuild+branch%3Adevelop)
3+
[![Build](https://github.com/wcm-io-devops/devops-tooling/actions/workflows/maven-build.yml/badge.svg?branch=develop)](https://github.com/wcm-io-devops/devops-tooling/actions?query=workflow%3ABuild+branch%3Adevelop)
44

55
Tooling for wcm.io DevOps projects

parent_toplevel/changes.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,15 @@
2424
xsi:schemaLocation="http://maven.apache.org/changes/2.0.0 https://maven.apache.org/xsd/changes-2.0.0.xsd">
2525
<body>
2626

27+
<release version="2.1.0" date="2025-09-24">
28+
<action type="update" dev="sseifert">
29+
Switch minimum Java to Java 17 - both for build and compile target.
30+
</action>
31+
<action type="update" dev="sseifert">
32+
Update global-parent dependency to 70.
33+
</action>
34+
</release>
35+
2736
<release version="2.0.4" date="2025-09-19">
2837
<action type="update" dev="sseifert">
2938
Update to global-parent 66.

parent_toplevel/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
<parent>
2626
<groupId>io.wcm.maven</groupId>
2727
<artifactId>io.wcm.maven.global-parent</artifactId>
28-
<version>66</version>
28+
<version>70</version>
2929
<relativePath />
3030
</parent>
3131

3232
<groupId>io.wcm.devops</groupId>
3333
<artifactId>io.wcm.devops.parent_toplevel</artifactId>
34-
<version>2.0.4</version>
34+
<version>2.1.0</version>
3535
<packaging>pom</packaging>
3636

3737
<name>Toplevel Parent</name>
@@ -75,7 +75,7 @@
7575
<properties>
7676

7777
<!-- Java version -->
78-
<java.version>11</java.version>
78+
<java.version>17</java.version>
7979

8080
<!-- site settings -->
8181
<site.url.module.prefix>tooling/parent_toplevel</site.url.module.prefix>
@@ -84,7 +84,7 @@
8484
<site.deploy.url>scm:git:https://github.com/wcm-io-devops/wcm-io-devops.github.io.git</site.deploy.url>
8585

8686
<!-- Versions -->
87-
<mockito.version>5.19.0</mockito.version>
87+
<mockito.version>5.20.0</mockito.version>
8888

8989
<!-- SonarCloud -->
9090
<sonar.organization>wcm-io-devops</sonar.organization>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>io.wcm.devops</groupId>
2828
<artifactId>io.wcm.devops.parent_toplevel</artifactId>
29-
<version>2.0.3-SNAPSHOT</version>
29+
<version>2.1.0-SNAPSHOT</version>
3030
<relativePath>parent_toplevel/pom.xml</relativePath>
3131
</parent>
3232

public_site/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<parent>
2727
<groupId>io.wcm.devops</groupId>
2828
<artifactId>io.wcm.devops.parent_toplevel</artifactId>
29-
<version>2.0.3-SNAPSHOT</version>
29+
<version>2.1.0-SNAPSHOT</version>
3030
<relativePath>../parent_toplevel/pom.xml</relativePath>
3131
</parent>
3232

0 commit comments

Comments
 (0)