diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5968745..9ce19f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -46,7 +46,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up JDK 21 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'semeru' java-version: 21 diff --git a/README.adoc b/README.adoc index de3584f..c279a99 100644 --- a/README.adoc +++ b/README.adoc @@ -1,4 +1,4 @@ -// Copyright (c) 2018, 2024 IBM Corporation and others. +// Copyright (c) 2018, 2025 IBM Corporation and others. // Licensed under Creative Commons Attribution-NoDerivatives // 4.0 International (CC BY-ND 4.0) // https://creativecommons.org/licenses/by-nd/4.0/ @@ -250,7 +250,7 @@ server.xml include::finish/backendServices/src/main/liberty/config/server.xml[] ---- -The [hotspot=schema-generation file=0]`jakarta.persistence.schema-generation` properties are used here so that you aren't required to manually create a database table to run this sample application. To learn more about the JPA schema generation and available properties, see https://jakarta.ee/specifications/persistence/3.0/jakarta-persistence-spec-3.0.html#a12917[Schema Generation, Section 9.4 of the JPA Specification] +The [hotspot=schema-generation file=0]`jakarta.persistence.schema-generation` properties are used here so that you aren't required to manually create a database table to run this sample application. To learn more about the JPA schema generation and available properties, see https://jakarta.ee/specifications/persistence/3.1/jakarta-persistence-spec-3.1.html#a12917[Schema Generation, Section 9.4 of the JPA Specification^] // ================================================================================================= // Performing CRUD operations using JPA diff --git a/finish/backendServices/pom.xml b/finish/backendServices/pom.xml index 210bdf0..ea46487 100644 --- a/finish/backendServices/pom.xml +++ b/finish/backendServices/pom.xml @@ -30,7 +30,7 @@ org.eclipse.microprofile microprofile - 6.1 + 7.0 pom provided diff --git a/finish/backendServices/src/main/liberty/config/server.xml b/finish/backendServices/src/main/liberty/config/server.xml index 997a893..3a4186a 100755 --- a/finish/backendServices/src/main/liberty/config/server.xml +++ b/finish/backendServices/src/main/liberty/config/server.xml @@ -1,11 +1,12 @@ - restfulWS-3.1 - jsonb-3.0 - jsonp-2.1 - cdi-4.0 - persistence-3.1 + jakartaee-10.0 + restfulWS + jsonb + jsonp + cdi + persistence diff --git a/finish/frontendUI/pom.xml b/finish/frontendUI/pom.xml index 75055ce..5f35e43 100644 --- a/finish/frontendUI/pom.xml +++ b/finish/frontendUI/pom.xml @@ -30,7 +30,7 @@ org.eclipse.microprofile microprofile - 6.1 + 7.0 pom provided diff --git a/finish/frontendUI/src/main/liberty/config/server.xml b/finish/frontendUI/src/main/liberty/config/server.xml index e709f44..80cee1a 100755 --- a/finish/frontendUI/src/main/liberty/config/server.xml +++ b/finish/frontendUI/src/main/liberty/config/server.xml @@ -1,13 +1,15 @@ - restfulWS-3.1 - jsonb-3.0 - jsonp-2.1 - cdi-4.0 - faces-4.0 - mpConfig-3.1 - mpRestClient-3.0 + jakartaee-10.0 + microprofile-7.0 + restfulWS + jsonb + jsonp + cdi + faces + mpConfig + mpRestClient diff --git a/finish/frontendUI/src/main/webapp/favicon.ico b/finish/frontendUI/src/main/webapp/favicon.ico new file mode 100644 index 0000000..c8652f3 Binary files /dev/null and b/finish/frontendUI/src/main/webapp/favicon.ico differ diff --git a/start/backendServices/pom.xml b/start/backendServices/pom.xml index 5be106c..fa53e41 100644 --- a/start/backendServices/pom.xml +++ b/start/backendServices/pom.xml @@ -30,7 +30,7 @@ org.eclipse.microprofile microprofile - 6.1 + 7.0 pom provided diff --git a/start/backendServices/src/main/liberty/config/server.xml b/start/backendServices/src/main/liberty/config/server.xml index dab7ea4..ee009ed 100755 --- a/start/backendServices/src/main/liberty/config/server.xml +++ b/start/backendServices/src/main/liberty/config/server.xml @@ -1,11 +1,12 @@ - restfulWS-3.1 - jsonb-3.0 - jsonp-2.1 - cdi-4.0 - persistence-3.1 + jakartaee-10.0 + restfulWS + jsonb + jsonp + cdi + persistence diff --git a/start/frontendUI/pom.xml b/start/frontendUI/pom.xml index 75055ce..5f35e43 100644 --- a/start/frontendUI/pom.xml +++ b/start/frontendUI/pom.xml @@ -30,7 +30,7 @@ org.eclipse.microprofile microprofile - 6.1 + 7.0 pom provided diff --git a/start/frontendUI/src/main/liberty/config/server.xml b/start/frontendUI/src/main/liberty/config/server.xml index e709f44..80cee1a 100755 --- a/start/frontendUI/src/main/liberty/config/server.xml +++ b/start/frontendUI/src/main/liberty/config/server.xml @@ -1,13 +1,15 @@ - restfulWS-3.1 - jsonb-3.0 - jsonp-2.1 - cdi-4.0 - faces-4.0 - mpConfig-3.1 - mpRestClient-3.0 + jakartaee-10.0 + microprofile-7.0 + restfulWS + jsonb + jsonp + cdi + faces + mpConfig + mpRestClient diff --git a/start/frontendUI/src/main/webapp/favicon.ico b/start/frontendUI/src/main/webapp/favicon.ico new file mode 100644 index 0000000..c8652f3 Binary files /dev/null and b/start/frontendUI/src/main/webapp/favicon.ico differ