Skip to content

Commit

Permalink
use versionless feature
Browse files Browse the repository at this point in the history
Signed-off-by: Gilbert Kwan <[email protected]>
  • Loading branch information
gkwan-ibm committed Nov 14, 2024
1 parent 3b02c69 commit 2fd12e0
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
canSkip: ${{ steps.Checker.outputs.canSkip }}
steps:
- name: Get files
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Get tools
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
path: tools/
repository: openliberty/guides-common
Expand Down Expand Up @@ -47,10 +47,11 @@ jobs:
run:
working-directory: finish
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
distribution: 'semeru'
java-version: 11
- run: unset _JAVA_OPTIONS
- name: Run tests
Expand Down
10 changes: 6 additions & 4 deletions finish/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
<server description="inventory">

<featureManager>
<feature>jsonb-3.0</feature>
<feature>mpHealth-4.0</feature>
<feature>mpOpenAPI-3.1</feature>
<feature>persistence-3.1</feature>
<platform>jakartaee-10.0</platform>
<platform>microprofile-6.1</platform>
<feature>jsonb</feature>
<feature>mpHealth</feature>
<feature>mpOpenAPI</feature>
<feature>persistence</feature>
<feature>transportSecurity-1.0</feature>
<feature>monitor-1.0</feature>
</featureManager>
Expand Down
10 changes: 6 additions & 4 deletions start/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
<server description="inventory">

<featureManager>
<feature>jsonb-3.0</feature>
<feature>mpHealth-4.0</feature>
<feature>mpOpenAPI-3.1</feature>
<feature>persistence-3.1</feature>
<platform>jakartaee-10.0</platform>
<platform>microprofile-6.1</platform>
<feature>jsonb</feature>
<feature>mpHealth</feature>
<feature>mpOpenAPI</feature>
<feature>persistence</feature>
<feature>transportSecurity-1.0</feature>
<feature>monitor-1.0</feature>
</featureManager>
Expand Down

0 comments on commit 2fd12e0

Please sign in to comment.