Skip to content

Commit 8b4aeca

Browse files
authored
update versions (#143)
1 parent 42770ef commit 8b4aeca

File tree

5 files changed

+20
-20
lines changed

5 files changed

+20
-20
lines changed

Diff for: .github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ jobs:
4848
working-directory: finish
4949
steps:
5050
- uses: actions/checkout@v2
51-
- name: Set up JDK 8
51+
- name: Set up JDK 11
5252
uses: actions/setup-java@v1
5353
with:
54-
java-version: 8
54+
java-version: 11
5555
- run: unset _JAVA_OPTIONS
5656
- name: Run tests
5757
run: sudo ../scripts/testApp.sh

Diff for: finish/pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
14-
<maven.compiler.source>1.8</maven.compiler.source>
15-
<maven.compiler.target>1.8</maven.compiler.target>
14+
<maven.compiler.source>11</maven.compiler.source>
15+
<maven.compiler.target>11</maven.compiler.target>
1616
<!-- Liberty configuration -->
1717
<liberty.var.default.http.port>9080</liberty.var.default.http.port>
1818
<liberty.var.default.https.port>9443</liberty.var.default.https.port>
@@ -23,13 +23,13 @@
2323
<dependency>
2424
<groupId>jakarta.platform</groupId>
2525
<artifactId>jakarta.jakartaee-api</artifactId>
26-
<version>9.1.0</version>
26+
<version>10.0.0</version>
2727
<scope>provided</scope>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.eclipse.microprofile</groupId>
3131
<artifactId>microprofile</artifactId>
32-
<version>5.0</version>
32+
<version>6.0</version>
3333
<type>pom</type>
3434
<scope>provided</scope>
3535
</dependency>
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.junit.jupiter</groupId>
4040
<artifactId>junit-jupiter</artifactId>
41-
<version>5.8.2</version>
41+
<version>5.9.2</version>
4242
<scope>test</scope>
4343
</dependency>
4444
</dependencies>
@@ -123,7 +123,7 @@
123123
<plugin>
124124
<groupId>org.apache.maven.plugins</groupId>
125125
<artifactId>maven-resources-plugin</artifactId>
126-
<version>3.2.0</version>
126+
<version>3.3.1</version>
127127
<executions>
128128
<execution>
129129
<id>Copy frontend build to target</id>

Diff for: finish/src/main/liberty/config/server.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<server description="Sample Liberty server">
22

33
<featureManager>
4-
<feature>restfulWS-3.0</feature>
5-
<feature>jsonb-2.0</feature>
6-
<feature>jsonp-2.0</feature>
4+
<feature>restfulWS-3.1</feature>
5+
<feature>jsonb-3.0</feature>
6+
<feature>jsonp-2.1</feature>
77
</featureManager>
88

99
<variable name="default.http.port" defaultValue="9080"/>

Diff for: start/pom.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
14-
<maven.compiler.source>1.8</maven.compiler.source>
15-
<maven.compiler.target>1.8</maven.compiler.target>
14+
<maven.compiler.source>11</maven.compiler.source>
15+
<maven.compiler.target>11</maven.compiler.target>
1616
<!-- Liberty configuration -->
1717
<liberty.var.default.http.port>9080</liberty.var.default.http.port>
1818
<liberty.var.default.https.port>9443</liberty.var.default.https.port>
@@ -23,13 +23,13 @@
2323
<dependency>
2424
<groupId>jakarta.platform</groupId>
2525
<artifactId>jakarta.jakartaee-api</artifactId>
26-
<version>9.1.0</version>
26+
<version>10.0.0</version>
2727
<scope>provided</scope>
2828
</dependency>
2929
<dependency>
3030
<groupId>org.eclipse.microprofile</groupId>
3131
<artifactId>microprofile</artifactId>
32-
<version>5.0</version>
32+
<version>6.0</version>
3333
<type>pom</type>
3434
<scope>provided</scope>
3535
</dependency>
@@ -38,7 +38,7 @@
3838
<dependency>
3939
<groupId>org.junit.jupiter</groupId>
4040
<artifactId>junit-jupiter</artifactId>
41-
<version>5.8.2</version>
41+
<version>5.9.2</version>
4242
<scope>test</scope>
4343
</dependency>
4444
</dependencies>
@@ -100,7 +100,7 @@
100100
<plugin>
101101
<groupId>org.apache.maven.plugins</groupId>
102102
<artifactId>maven-resources-plugin</artifactId>
103-
<version>3.2.0</version>
103+
<version>3.3.1</version>
104104
<executions>
105105
<execution>
106106
<id>Copy frontend build to target</id>

Diff for: start/src/main/liberty/config/server.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<server description="Sample Liberty server">
22

33
<featureManager>
4-
<feature>restfulWS-3.0</feature>
5-
<feature>jsonb-2.0</feature>
6-
<feature>jsonp-2.0</feature>
4+
<feature>restfulWS-3.1</feature>
5+
<feature>jsonb-3.0</feature>
6+
<feature>jsonp-2.1</feature>
77
</featureManager>
88

99
<variable name="default.http.port" defaultValue="9080"/>

0 commit comments

Comments
 (0)