Skip to content

Commit 9248ad6

Browse files
authored
Merge pull request #208 from OpenLiberty/staging
Merge staging to prod - Use versionless feature and MP7
2 parents e700d0a + e9fc266 commit 9248ad6

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
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
@@ -44,10 +44,11 @@ jobs:
4444
run:
4545
working-directory: finish
4646
steps:
47-
- uses: actions/checkout@v2
47+
- uses: actions/checkout@v4
4848
- name: Set up JDK 11
49-
uses: actions/setup-java@v1
49+
uses: actions/setup-java@v4
5050
with:
51+
distribution: 'semeru'
5152
java-version: 11
5253
- run: unset _JAVA_OPTIONS
5354
- name: Run tests

README.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017, 2024 IBM Corporation and others.
1+
// Copyright (c) 2017, 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/
@@ -63,8 +63,8 @@ If Maven is installed properly, you see information about the Maven installation
6363

6464
[source, role="no_copy"]
6565
----
66-
Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
67-
Maven home: /Applications/Maven/apache-maven-3.8.1
66+
Apache Maven 3.9.6 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
67+
Maven home: /Applications/Maven/apache-maven-3.9.6
6868
Java version: 11.0.12, vendor: International Business Machines Corporation, runtime: /Library/Java/JavaVirtualMachines/ibm-semeru-open-11.jdk/Contents/Home
6969
Default locale: en_US, platform encoding: UTF-8
7070
OS name: "mac os x", version: "11.6", arch: "x86_64", family: "mac"

finish/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>org.eclipse.microprofile</groupId>
5858
<artifactId>microprofile</artifactId>
59-
<version>6.1</version>
59+
<version>7.0</version>
6060
<type>pom</type>
6161
<scope>provided</scope>
6262
</dependency>

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<server description="Sample Servlet server">
22
<featureManager>
3-
<feature>servlet-6.0</feature>
3+
<platform>jakartaee-10.0</platform>
4+
<feature>servlet</feature>
45
</featureManager>
56

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

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<server description="Sample Servlet server">
22
<featureManager>
3-
<feature>servlet-6.0</feature>
3+
<platform>jakartaee-10.0</platform>
4+
<feature>servlet</feature>
45
</featureManager>
56

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

0 commit comments

Comments
 (0)