Skip to content

Commit 47d1218

Browse files
authored
Merge pull request #152 from OpenLiberty/staging
Merge staging to prod - Use versionless feature and MP7
2 parents 863465a + 4d3821c commit 47d1218

File tree

5 files changed

+21
-16
lines changed

5 files changed

+21
-16
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
@@ -47,10 +47,11 @@ jobs:
4747
run:
4848
working-directory: finish
4949
steps:
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v4
5151
- name: Set up JDK 11
52-
uses: actions/setup-java@v1
52+
uses: actions/setup-java@v4
5353
with:
54+
distribution: 'semeru'
5455
java-version: 11
5556
- run: unset _JAVA_OPTIONS
5657
- name: Run tests

Diff for: finish/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@
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>
3636
<dependency>
3737
<groupId>org.postgresql</groupId>
3838
<artifactId>postgresql</artifactId>
39-
<version>42.7.4</version>
39+
<version>42.7.5</version>
4040
<scope>provided</scope>
4141
</dependency>
4242

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

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
<server description="inventory">
33

44
<featureManager>
5-
<feature>jsonb-3.0</feature>
6-
<feature>mpHealth-4.0</feature>
7-
<feature>mpOpenAPI-3.1</feature>
8-
<feature>persistence-3.1</feature>
5+
<platform>jakartaee-10.0</platform>
6+
<platform>microprofile-7.0</platform>
7+
<feature>jsonb</feature>
8+
<feature>mpHealth</feature>
9+
<feature>mpOpenAPI</feature>
10+
<feature>persistence</feature>
911
<feature>transportSecurity-1.0</feature>
1012
<feature>monitor-1.0</feature>
1113
</featureManager>

Diff for: start/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@
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>
3636
<dependency>
3737
<groupId>org.postgresql</groupId>
3838
<artifactId>postgresql</artifactId>
39-
<version>42.7.4</version>
39+
<version>42.7.5</version>
4040
<scope>provided</scope>
4141
</dependency>
4242

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

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
<server description="inventory">
33

44
<featureManager>
5-
<feature>jsonb-3.0</feature>
6-
<feature>mpHealth-4.0</feature>
7-
<feature>mpOpenAPI-3.1</feature>
8-
<feature>persistence-3.1</feature>
5+
<platform>jakartaee-10.0</platform>
6+
<platform>microprofile-7.0</platform>
7+
<feature>jsonb</feature>
8+
<feature>mpHealth</feature>
9+
<feature>mpOpenAPI</feature>
10+
<feature>persistence</feature>
911
<feature>transportSecurity-1.0</feature>
1012
<feature>monitor-1.0</feature>
1113
</featureManager>

0 commit comments

Comments
 (0)