Skip to content

Commit

Permalink
Merge pull request #403 from hazendaz/master
Browse files Browse the repository at this point in the history
Support new site distro and allow jdk 22
  • Loading branch information
hazendaz authored Nov 3, 2023
2 parents c5d4834 + 5ce6710 commit d0dbffa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<relativePath />
</parent>

<groupId>org.mybatis</groupId>
<artifactId>mybatis-cdi</artifactId>
<version>2.0.1-SNAPSHOT</version>

Expand All @@ -37,7 +38,7 @@

<scm>
<url>https://github.com/mybatis/cdi</url>
<connection>scm:git:ssh://github.com/mybatis/cdi.git</connection>
<connection>scm:git:ssh://git@github.com/mybatis/cdi.git</connection>
<developerConnection>scm:git:ssh://[email protected]/mybatis/cdi.git</developerConnection>
<tag>HEAD</tag>
</scm>
Expand All @@ -51,9 +52,9 @@
</ciManagement>
<distributionManagement>
<site>
<id>gh-pages</id>
<id>gh-pages-scm</id>
<name>Mybatis GitHub Pages</name>
<url>git:ssh://[email protected]/mybatis/cdi.git?gh-pages#</url>
<url>scm:git:ssh://[email protected]/mybatis/cdi.git</url>
</site>
</distributionManagement>

Expand Down

0 comments on commit d0dbffa

Please sign in to comment.