From 687486db61486941d14ee9e5afbd7127900b7ce7 Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Fri, 3 Nov 2023 19:22:57 -0400 Subject: [PATCH 1/2] [pom] Prepare for new site distro --- pom.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index c5e3ceb4..6cc7c2cf 100644 --- a/pom.xml +++ b/pom.xml @@ -27,6 +27,7 @@ + org.mybatis mybatis-cdi 2.0.1-SNAPSHOT @@ -37,7 +38,7 @@ https://github.com/mybatis/cdi - scm:git:ssh://github.com/mybatis/cdi.git + scm:git:ssh://git@github.com/mybatis/cdi.git scm:git:ssh://git@github.com/mybatis/cdi.git HEAD @@ -51,9 +52,9 @@ - gh-pages + gh-pages-scm Mybatis GitHub Pages - git:ssh://git@github.com/mybatis/cdi.git?gh-pages# + scm:git:ssh://git@github.com/mybatis/cdi.git From 5ce6710f6653008b7ffce56f3a2ba346d13378d5 Mon Sep 17 00:00:00 2001 From: Jeremy Landis Date: Fri, 3 Nov 2023 19:24:49 -0400 Subject: [PATCH 2/2] [GHA] Allow jdk 22 builds --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index af8f1a39..fdfb248b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,9 +7,9 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macOS-latest, windows-latest] - java: [11, 17, 21] - distribution: ['zulu'] + os: [ubuntu-latest, macos-latest, windows-latest] + java: [11, 17, 21, 22-ea] + distribution: ['temurin'] fail-fast: false max-parallel: 4 name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}