Skip to content

Commit 614cd91

Browse files
authored
build: bump java build version to 25 (#245)
In this commit we bump the java build version from 17 to 25. Signed-off-by: András Felleg <73272730+Andris28@users.noreply.github.com>
1 parent cb13209 commit 614cd91

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
strategy:
4545
matrix:
46-
java-version: ['11', '17']
46+
java-version: ['11', '25']
4747

4848
steps:
4949
- name: Checkout repository

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<surefire-version>3.1.2</surefire-version>
2323
<checkstyle-plugin-version>3.3.0</checkstyle-plugin-version>
2424
<checkstyle-version>10.23.0</checkstyle-version>
25-
<jacoco-plugin-version>0.8.10</jacoco-plugin-version>
25+
<jacoco-plugin-version>0.8.14</jacoco-plugin-version>
2626
<compiler-plugin-version>3.11.0</compiler-plugin-version>
2727
<okhttp3-version>5.3.2</okhttp3-version>
2828
<gson-version>2.13.1</gson-version>

src/test/java/com/ibm/cloud/sdk/core/util/DateUtilsTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,13 @@ public void testDateTime() {
116116

117117
// RFC 2616 HTTP Date.
118118
_testDateTime("Fri, 27 Aug 2021 13:15:55 GMT", "2021-08-27T13:15:55.000Z");
119-
_testDateTime("Fri, 27 Aug 2021 13:15:55 CXT", "2021-08-27T06:15:55.000Z");
120-
_testDateTime("Fri, 27 Aug 2021 13:15:55 VLAT", "2021-08-27T03:15:55.000Z");
119+
_testDateTime("Fri, 27 Aug 2021 13:15:55 PDT", "2021-08-27T20:15:55.000Z");
120+
_testDateTime("Fri, 27 Aug 2021 13:15:55 EDT", "2021-08-27T17:15:55.000Z");
121121

122122
// RFC 850 HTTP Date.
123123
_testDateTime("Friday, 27-Aug-2021 13:15:55 GMT", "2021-08-27T13:15:55.000Z");
124-
_testDateTime("Friday, 27-Aug-2021 13:15:55 CXT", "2021-08-27T06:15:55.000Z");
125-
_testDateTime("Friday, 27-Aug-2021 13:15:55 VLAT", "2021-08-27T03:15:55.000Z");
124+
_testDateTime("Friday, 27-Aug-2021 13:15:55 PDT", "2021-08-27T20:15:55.000Z");
125+
_testDateTime("Friday, 27-Aug-2021 13:15:55 EDT", "2021-08-27T17:15:55.000Z");
126126

127127
// ANSIC HTTP Date.
128128
_testDateTime("Fri Aug 27 13:15:55 2021", "2021-08-27T13:15:55.000Z");

0 commit comments

Comments
 (0)