Skip to content

Commit f2049d8

Browse files
authored
Merge pull request #251 from OpenLiberty/staging
Merge staging to prod - Use versionless feature and MP7
2 parents a7b8d02 + 22c5be6 commit f2049d8

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
canSkip: ${{ steps.Checker.outputs.canSkip }}
1313
steps:
1414
- name: Get files
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
- name: Get tools
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
with:
1919
path: tools/
2020
repository: openliberty/guides-common
@@ -48,10 +48,11 @@ jobs:
4848
working-directory: finish
4949

5050
steps:
51-
- uses: actions/checkout@v2
51+
- uses: actions/checkout@v4
5252
- name: Set up JDK 11
53-
uses: actions/setup-java@v1
53+
uses: actions/setup-java@v4
5454
with:
55+
distribution: 'semeru'
5556
java-version: 11
5657
- run: unset _JAVA_OPTIONS
5758

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2019, 2023 IBM Corporation and others.
1+
// Copyright (c) 2019, 2025 IBM Corporation and others.
22
// Licensed under Creative Commons Attribution-NoDerivatives
33
// 4.0 International (CC BY-ND 4.0)
44
// https://creativecommons.org/licenses/by-nd/4.0/
@@ -333,7 +333,7 @@ endif::[]
333333

334334
When you are done checking the application root, exit dev mode by pressing `CTRL+C` in the command-line session where you ran the Liberty.
335335

336-
Although the Angular application that this guide shows you how to build is simple, when you build more complex Angular applications, testing becomes a crucial part of your development lifecycle. If you need to write test cases, follow the official unit testing and end-to-end testing documentation on the https://angular.io/guide/testing[official Angular page^].
336+
Although the Angular application that this guide shows you how to build is simple, when you build more complex Angular applications, testing becomes a crucial part of your development lifecycle. If you need to write test cases, follow the official unit testing and end-to-end testing documentation on the https://angular.dev/guide/testing[official Angular page^].
337337

338338
== Great work! You're done!
339339

finish/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<!-- tag::microprofile[] -->
2929
<artifactId>microprofile</artifactId>
3030
<!-- end::microprofile[] -->
31-
<version>6.1</version>
31+
<version>7.0</version>
3232
<type>pom</type>
3333
<scope>provided</scope>
3434
</dependency>

finish/src/main/liberty/config/server.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<server description="Sample Liberty server">
22

33
<featureManager>
4-
<feature>restfulWS-3.1</feature>
5-
<feature>jsonb-3.0</feature>
6-
<feature>jsonp-2.1</feature>
4+
<platform>jakartaee-10.0</platform>
5+
<feature>restfulWS</feature>
6+
<feature>jsonb</feature>
7+
<feature>jsonp</feature>
78
</featureManager>
89

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

start/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<!-- tag::microprofile[] -->
2929
<artifactId>microprofile</artifactId>
3030
<!-- end::microprofile[] -->
31-
<version>6.1</version>
31+
<version>7.0</version>
3232
<type>pom</type>
3333
<scope>provided</scope>
3434
</dependency>

start/src/main/liberty/config/server.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<server description="Sample Liberty server">
22

33
<featureManager>
4-
<feature>restfulWS-3.1</feature>
5-
<feature>jsonb-3.0</feature>
6-
<feature>jsonp-2.1</feature>
4+
<platform>jakartaee-10.0</platform>
5+
<feature>restfulWS</feature>
6+
<feature>jsonb</feature>
7+
<feature>jsonp</feature>
78
</featureManager>
89

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

0 commit comments

Comments
 (0)