Skip to content

Commit 8e78757

Browse files
committed
Switch to Java 11 as minimum version.
Update to global-parent 50.
1 parent 225655b commit 8e78757

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

.github/workflows/maven-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
java: [8, 11, 17]
22+
java: [11, 17]
2323
os: [ubuntu-latest]
2424
distribution: [temurin]
2525

2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v3
2929

3030
- name: Setup JDK
31-
uses: actions/setup-java@v2
31+
uses: actions/setup-java@v3
3232
with:
3333
distribution: ${{ matrix.distribution }}
3434
java-version: ${{ matrix.java }}
35-
cache: 'maven'
35+
cache: maven
3636

3737
- name: Build and verify
3838
run: ./mvnw -s ./.maven-settings.xml -Pcontinuous-integration -B -U clean verify

.github/workflows/maven-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Deploy snapshots to Sonatpe OSS repository and deploy site to GitHub Pages
1+
# Deploy snapshots to Sonatype OSS repository and deploy site to GitHub Pages
22

33
name: Deploy
44

@@ -15,19 +15,19 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
- name: Configure GIT
2121
run: |
2222
git config --global user.email "${{ secrets.GH_SITE_DEPLOY_EMAIL }}"
2323
git config --global user.name "${{ secrets.GH_SITE_DEPLOY_NAME }}"
2424
2525
- name: Setup JDK
26-
uses: actions/setup-java@v2
26+
uses: actions/setup-java@v3
2727
with:
2828
distribution: temurin
29-
java-version: 8
30-
cache: 'maven'
29+
java-version: 11
30+
cache: maven
3131

3232
- name: Build, verify, deploy, generate site
3333
env:

parent_toplevel/changes.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,12 @@
2323
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
2424
<body>
2525

26-
<release version="1.3.4" date="not released">
26+
<release version="1.4.0" date="not released">
2727
<action type="update" dev="sseifert">
28-
Update to global-parent 47.
28+
Switch to Java 11 as minimum version.
29+
</action>
30+
<action type="update" dev="sseifert">
31+
Update to global-parent 50.
2932
</action>
3033
<action type="update" dev="sseifert">
3134
Update testing dependencies.

parent_toplevel/pom.xml

Lines changed: 3 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>48</version>
28+
<version>50-SNAPSHOT</version>
2929
<relativePath />
3030
</parent>
3131

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

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

7777
<!-- Java version -->
78-
<java.version>1.8</java.version>
79-
<build.compiler.release>8</build.compiler.release>
78+
<java.version>11</java.version>
8079

8180
<!-- site settings -->
8281
<site.url.module.prefix>tooling/parent_toplevel</site.url.module.prefix>

0 commit comments

Comments
 (0)