Skip to content

Commit 05beee9

Browse files
authored
Merge pull request #247 from OpenLiberty/staging
Merge staging to prod - Use versionless feature and MP7
2 parents 639a7f4 + ae7d7e1 commit 05beee9

File tree

9 files changed

+25
-21
lines changed

9 files changed

+25
-21
lines changed

Diff for: .github/workflows/test.yml

+5-4
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
run:
4949
working-directory: finish
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
- name: Run tests

Diff for: README.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2020, 2024 IBM Corporation and others.
1+
// Copyright (c) 2020, 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/
@@ -177,8 +177,8 @@ include::finish/pom.xml[]
177177

178178
== Creating the default page
179179

180-
Create the entry point of your React application. The latest version of `Next.js` recommends you use the https://nextjs.org/docs/app/building-your-application/routing/defining-routes[App Router^], which centralizes routing logic under the `app` directory.
181-
180+
Create the entry point of your React application. The latest version of `Next.js` recommends you use the https://nextjs.org/docs/app[App Router^], which centralizes routing logic under the `app` directory.
181+
182182
To construct the home page of the web application, create a [hotspot file=0]`page.jsx` file.
183183

184184
[role="code_command hotspot file=0", subs="quotes"]
@@ -209,7 +209,7 @@ layout.jsx
209209
include::finish/src/main/frontend/src/app/layout.jsx[]
210210
----
211211

212-
For more detailed information, see the `Next.js` documentation on https://nextjs.org/docs/app/building-your-application/routing/pages[Pages^] and https://nextjs.org/docs/app/building-your-application/routing/layouts-and-templates[Layouts^].
212+
For more detailed information, see the `Next.js` documentation on the https://nextjs.org/docs/app/getting-started/layouts-and-pages[Layouts and Pages^].
213213

214214
// =================================================================================================
215215
// Creating the React component

Diff for: finish/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>org.eclipse.microprofile</groupId>
3131
<artifactId>microprofile</artifactId>
32-
<version>6.1</version>
32+
<version>7.0</version>
3333
<type>pom</type>
3434
<scope>provided</scope>
3535
</dependency>

Diff for: finish/src/main/frontend/package-lock.json

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

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

3-
<featureManager>
4-
<feature>restfulWS-3.1</feature>
5-
<feature>jsonb-3.0</feature>
6-
<feature>jsonp-2.1</feature>
3+
<featureManager>
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"/>

Diff for: start/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>org.eclipse.microprofile</groupId>
3131
<artifactId>microprofile</artifactId>
32-
<version>6.1</version>
32+
<version>7.0</version>
3333
<type>pom</type>
3434
<scope>provided</scope>
3535
</dependency>

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

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

3-
<featureManager>
4-
<feature>restfulWS-3.1</feature>
5-
<feature>jsonb-3.0</feature>
6-
<feature>jsonp-2.1</feature>
3+
<featureManager>
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"/>

Diff for: start/src/main/webapp/.gitkeep

Whitespace-only changes.

Diff for: start/src/main/webapp/favicon.ico

25.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)