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 13, 2024
1 parent c304bf9 commit 03e9f37
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,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 @@ -46,10 +46,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: Grant execute permission for gradlew
Expand Down
3 changes: 2 additions & 1 deletion finish/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<server description="Sample Servlet server">
<featureManager>
<feature>servlet-6.0</feature>
<platform>jakartaee-10.0</platform>
<feature>servlet</feature>
</featureManager>

<httpEndpoint httpPort="${http.port}" httpsPort="${https.port}" id="defaultHttpEndpoint" host="*" />
Expand Down
3 changes: 2 additions & 1 deletion start/src/main/liberty/config/server.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<server description="Sample Servlet server">
<featureManager>
<feature>servlet-6.0</feature>
<platform>jakartaee-10.0</platform>
<feature>servlet</feature>
</featureManager>

<httpEndpoint httpPort="${http.port}" httpsPort="${https.port}" id="defaultHttpEndpoint" host="*" />
Expand Down

0 comments on commit 03e9f37

Please sign in to comment.