Skip to content

Commit d136d32

Browse files
Andrew SasmitoAndrew Sasmito
authored andcommitted
Update dependencies
Signed-off-by: Andrew Sasmito <Andrew.Sasmito@ibm.com>
1 parent 9ffaec7 commit d136d32

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ jobs:
4646
working-directory: finish
4747
steps:
4848
- uses: actions/checkout@v4
49-
- name: Set up JDK 11
49+
- name: Set up JDK 17
5050
uses: actions/setup-java@v4
5151
with:
5252
distribution: 'semeru'
53-
java-version: 11
53+
java-version: 17
5454
- run: unset _JAVA_OPTIONS
5555
- name: Run tests
5656
run: sudo -E ../scripts/testApp.sh

finish/frontend/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13-
<maven.compiler.source>11</maven.compiler.source>
14-
<maven.compiler.target>11</maven.compiler.target>
13+
<maven.compiler.source>17</maven.compiler.source>
14+
<maven.compiler.target>17</maven.compiler.target>
1515
<liberty.var.http.port>9090</liberty.var.http.port>
1616
<liberty.var.https.port>9091</liberty.var.https.port>
1717
</properties>

finish/system/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
16-
<maven.compiler.source>11</maven.compiler.source>
17-
<maven.compiler.target>11</maven.compiler.target>
16+
<maven.compiler.source>17</maven.compiler.source>
17+
<maven.compiler.target>17</maven.compiler.target>
1818
<!-- Liberty configuration -->
1919
<liberty.var.default.hostname>localhost</liberty.var.default.hostname>
2020
<liberty.var.http.port>8080</liberty.var.http.port>
@@ -49,19 +49,19 @@
4949
<dependency>
5050
<groupId>org.junit.jupiter</groupId>
5151
<artifactId>junit-jupiter</artifactId>
52-
<version>5.14.0</version>
52+
<version>6.0.1</version>
5353
<scope>test</scope>
5454
</dependency>
5555
<dependency>
5656
<groupId>org.jboss.resteasy</groupId>
5757
<artifactId>resteasy-client</artifactId>
58-
<version>6.2.14.Final</version>
58+
<version>7.0.0.Final</version>
5959
<scope>test</scope>
6060
</dependency>
6161
<dependency>
6262
<groupId>org.jboss.resteasy</groupId>
6363
<artifactId>resteasy-json-binding-provider</artifactId>
64-
<version>6.2.14.Final</version>
64+
<version>7.0.0.Final</version>
6565
<scope>test</scope>
6666
</dependency>
6767
<dependency>

start/frontend/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13-
<maven.compiler.source>11</maven.compiler.source>
14-
<maven.compiler.target>11</maven.compiler.target>
13+
<maven.compiler.source>17</maven.compiler.source>
14+
<maven.compiler.target>17</maven.compiler.target>
1515
<liberty.var.http.port>9090</liberty.var.http.port>
1616
<liberty.var.https.port>9091</liberty.var.https.port>
1717
</properties>

start/system/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
16-
<maven.compiler.source>11</maven.compiler.source>
17-
<maven.compiler.target>11</maven.compiler.target>
16+
<maven.compiler.source>17</maven.compiler.source>
17+
<maven.compiler.target>17</maven.compiler.target>
1818
<!-- Liberty configuration -->
1919
<liberty.var.default.hostname>localhost</liberty.var.default.hostname>
2020
<liberty.var.http.port>8080</liberty.var.http.port>
@@ -49,19 +49,19 @@
4949
<dependency>
5050
<groupId>org.junit.jupiter</groupId>
5151
<artifactId>junit-jupiter</artifactId>
52-
<version>5.14.0</version>
52+
<version>6.0.1</version>
5353
<scope>test</scope>
5454
</dependency>
5555
<dependency>
5656
<groupId>org.jboss.resteasy</groupId>
5757
<artifactId>resteasy-client</artifactId>
58-
<version>6.2.14.Final</version>
58+
<version>7.0.0.Final</version>
5959
<scope>test</scope>
6060
</dependency>
6161
<dependency>
6262
<groupId>org.jboss.resteasy</groupId>
6363
<artifactId>resteasy-json-binding-provider</artifactId>
64-
<version>6.2.14.Final</version>
64+
<version>7.0.0.Final</version>
6565
<scope>test</scope>
6666
</dependency>
6767
<dependency>

0 commit comments

Comments
 (0)