Skip to content

Commit 5af90be

Browse files
authored
Add JDK-23 to the build matrix (#977)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
1 parent ddfcd3d commit 5af90be

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/notifications-test-and-build-workflow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# This setting says that all jobs should finish, even if one fails
2323
fail-fast: false
2424
matrix:
25-
java: [21]
25+
java: [21, 23]
2626

2727
# Job name
2828
name: Build Notifications with JDK ${{ matrix.java }} on linux
@@ -85,7 +85,7 @@ jobs:
8585
# This setting says that all jobs should finish, even if one fails
8686
fail-fast: false
8787
matrix:
88-
java: [21]
88+
java: [21, 23]
8989
os: [ windows-latest, macos-latest ]
9090
include:
9191
- os: windows-latest

.github/workflows/security-notifications-test-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# This setting says that all jobs should finish, even if one fails
1717
fail-fast: false
1818
matrix:
19-
java: [21]
19+
java: [21, 23]
2020

2121
runs-on: ubuntu-latest
2222

notifications/build-tools/merged-coverage.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
allprojects {
77
plugins.withId('jacoco') {
8-
jacoco.toolVersion = '0.8.11'
8+
jacoco.toolVersion = '0.8.12'
99
// For some reason this dependency isn't getting setup automatically by the jacoco plugin
1010
tasks.withType(JacocoReport) {
1111
dependsOn tasks.withType(Test)

notifications/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ buildscript {
4040
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlin_version}"
4141
classpath "org.jetbrains.kotlin:kotlin-allopen:${kotlin_version}"
4242
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.0"
43-
classpath "org.jacoco:org.jacoco.agent:0.8.11"
43+
classpath "org.jacoco:org.jacoco.agent:0.8.12"
4444
}
4545

4646
configurations {

notifications/core/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ dependencies {
149149
'org.assertj:assertj-core:3.16.1',
150150
'org.junit.jupiter:junit-jupiter-api:5.6.2',
151151
"org.junit.jupiter:junit-jupiter-params:5.6.2",
152-
"org.easymock:easymock:5.2.0",
152+
"org.easymock:easymock:5.4.0",
153153
"org.apache.logging.log4j:log4j-core:${versions.log4j}",
154154
'org.mockito:mockito-junit-jupiter:3.10.0',
155155
'com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0',

0 commit comments

Comments
 (0)