Skip to content

Commit

Permalink
Merge pull request #44 from mojohaus/#43_java17
Browse files Browse the repository at this point in the history
[#43] Java 17 requires keyalg argument for generateKeyPair.
  • Loading branch information
bmarwell authored Apr 24, 2022
2 parents b30bc4a + da7da05 commit d85a288
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
java: [8, 11] # build fails for 17
java: [8, 11, 17]
# switch to semeru after: https://github.com/actions/setup-java/pull/289
jdk: [temurin, zulu, adopt-openj9]
exclude:
Expand All @@ -52,8 +52,8 @@ jobs:
java: 11
jdk: temurin
# not ready yet, only as semeru
# - java: 17
# jdk: adopt-openj9
- java: 17
jdk: adopt-openj9
fail-fast: false

runs-on: ${{ matrix.os }}
Expand Down
1 change: 1 addition & 0 deletions keytool-maven-plugin/src/it/MKEYTOOL-10/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
<dname>cn=Test Development, ou=Development,
L=Herzele, ST=VL, o=FrankCornelis, c=BE
</dname>
<keyalg>ec</keyalg>
<keypass>secret</keypass>
<storepass>secret</storepass>
<alias>alias</alias>
Expand Down

0 comments on commit d85a288

Please sign in to comment.