Skip to content

Commit

Permalink
adjusted to jextract@jdk22
Browse files Browse the repository at this point in the history
  • Loading branch information
overheadhunter committed Feb 22, 2024
1 parent d403418 commit c878569
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
java-version: 17
java-version: 21
distribution: temurin
cache: 'maven'
gpg-private-key: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
Expand All @@ -28,7 +28,7 @@ jobs:
- uses: actions/setup-java@v3
if: startsWith(github.ref, 'refs/tags/')
with:
java-version: 17
java-version: 21
distribution: temurin
cache: 'maven'
server-id: ossrh
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>io.github.coffeelibs</groupId>
<artifactId>jextract-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>0.3.0</version>
<version>0.4.0</version>
<name>jextract Maven Plugin</name>
<description>A Maven plugin to invokes jextract.</description>
<inceptionYear>2022</inceptionYear>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ public void execute() throws MojoFailureException {

List<String> args = new ArrayList<>();
args.add(executable);
args.add("--source");
if (headerClassName != null) {
args.add("--header-class-name");
args.add(headerClassName);
Expand Down

0 comments on commit c878569

Please sign in to comment.