diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index df791d28..33792614 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,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: Run tests diff --git a/finish/pom.xml b/finish/pom.xml index dd1d7a36..a62f9289 100644 --- a/finish/pom.xml +++ b/finish/pom.xml @@ -30,7 +30,7 @@ org.eclipse.microprofile microprofile - 6.1 + 7.0 pom provided diff --git a/finish/src/main/liberty/config/server.xml b/finish/src/main/liberty/config/server.xml index 320ae6c7..d840f7fe 100755 --- a/finish/src/main/liberty/config/server.xml +++ b/finish/src/main/liberty/config/server.xml @@ -1,15 +1,17 @@ - restfulWS-3.1 - jsonp-2.1 - jsonb-3.0 - cdi-4.0 - mpMetrics-5.1 + jakartaee-10.0 + microprofile-7.0 + restfulWS + jsonp + jsonb + cdi - mpHealth-4.0 + mpHealth - mpConfig-3.1 + mpConfig + mpMetrics-5.1 diff --git a/finish/src/main/webapp/fonts/BunueloCleanPro-Light.otf b/finish/src/main/webapp/fonts/BunueloCleanPro-Light.otf new file mode 100644 index 00000000..bcb8cfb5 Binary files /dev/null and b/finish/src/main/webapp/fonts/BunueloCleanPro-Light.otf differ diff --git a/finish/src/main/webapp/fonts/BunueloCleanPro-Light.woff b/finish/src/main/webapp/fonts/BunueloCleanPro-Light.woff deleted file mode 100644 index 6d2e39dd..00000000 Binary files a/finish/src/main/webapp/fonts/BunueloCleanPro-Light.woff and /dev/null differ diff --git a/finish/src/main/webapp/fonts/BunueloCleanPro-SemiBold.otf b/finish/src/main/webapp/fonts/BunueloCleanPro-SemiBold.otf new file mode 100644 index 00000000..6d85daf6 Binary files /dev/null and b/finish/src/main/webapp/fonts/BunueloCleanPro-SemiBold.otf differ diff --git a/finish/src/main/webapp/fonts/BunueloCleanPro-SemiBold.woff b/finish/src/main/webapp/fonts/BunueloCleanPro-SemiBold.woff deleted file mode 100644 index 437fa924..00000000 Binary files a/finish/src/main/webapp/fonts/BunueloCleanPro-SemiBold.woff and /dev/null differ diff --git a/staging/server.xml b/staging/server.xml index 8c6d7a62..bf99543a 100755 --- a/staging/server.xml +++ b/staging/server.xml @@ -1,15 +1,17 @@ - restfulWS-3.1 - jsonp-2.1 - jsonb-3.0 - cdi-4.0 - mpMetrics-5.1 + jakartaee-10.0 + microprofile-7.0 + restfulWS + jsonp + jsonb + cdi - mpHealth-4.0 + mpHealth - mpConfig-3.1 + mpConfig + mpMetrics-5.1 diff --git a/start/pom.xml b/start/pom.xml index abbbc595..5d839e1d 100644 --- a/start/pom.xml +++ b/start/pom.xml @@ -30,7 +30,7 @@ org.eclipse.microprofile microprofile - 6.1 + 7.0 pom provided diff --git a/start/src/main/liberty/config/server.xml b/start/src/main/liberty/config/server.xml index c2ec8646..4230bac2 100755 --- a/start/src/main/liberty/config/server.xml +++ b/start/src/main/liberty/config/server.xml @@ -1,11 +1,13 @@ - restfulWS-3.1 - jsonp-2.1 - jsonb-3.0 - cdi-4.0 + jakartaee-10.0 + microprofile-7.0 + restfulWS + jsonp + jsonb + cdi + mpConfig mpMetrics-5.1 - mpConfig-3.1 diff --git a/start/src/main/webapp/js/mpData.js b/start/src/main/webapp/js/mpData.js index fd51dbce..e47f0a14 100644 --- a/start/src/main/webapp/js/mpData.js +++ b/start/src/main/webapp/js/mpData.js @@ -1,11 +1,10 @@ /******************************************************************************* -* Copyright (c) 2018, 2019 IBM Corporation and others. +* Copyright (c) 2018, 2021 IBM Corporation and others. * All rights reserved. This program and the accompanying materials -* are made available under the terms of the Eclipse Public License v1.0 +* are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at -* http://www.eclipse.org/legal/epl-v10.html +* http://www.eclipse.org/legal/epl-2.0/ * -* Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ function displayMetrics() { @@ -85,7 +84,8 @@ function displaySystemProperties() { } function getSystemPropertiesRequest() { - var propToDisplay = ["java.vendor", "java.version", "user.name", "os.name", "wlp.install.dir", "wlp.server.name" ]; + var propToDisplay = ["java.vendor", "java.version", "user.name", + "os.name", "wlp.install.dir", "wlp.server.name" ]; var url = "http://localhost:9080/system/properties"; var req = new XMLHttpRequest(); var table = document.getElementById("systemPropertiesTable");