From 646785be3e396cb3b2515eee093cde9a642e8a4b Mon Sep 17 00:00:00 2001 From: ozkanpakdil Date: Fri, 29 Apr 2022 18:30:11 +0100 Subject: [PATCH 01/23] graal plugin added --- .github/workflows/maven.yml | 32 +++++++++++++++++++++ .gitignore | 1 + README.md | 2 +- pom.xml | 56 +++++++++++++++++++++++++++++++------ 4 files changed, 82 insertions(+), 9 deletions(-) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..e52caaa --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,32 @@ +name: CI Build + +on: + push: + branches: + - master + +jobs: + build: + name: Building java-curl on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + steps: + - uses: graalvm/setup-graalvm@v1 + with: + version: "latest" + java-version: "17" + components: "native-image" + github-token: ${{ secrets.GITHUB_TOKEN }} + - name: checkout + uses: actions/checkout@v2 + - name: create the native image + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: mvn -ntp -DskipTests -Pnative + - name: Upload binary + uses: actions/upload-artifact@v2 + with: + name: java-curl-${{ matrix.os }} + path: target/java-curl \ No newline at end of file diff --git a/.gitignore b/.gitignore index adb5daa..3c84eb8 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ hs_err_pid* java-curl.iml .idea target +.vscode \ No newline at end of file diff --git a/README.md b/README.md index cd17a78..70b0888 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ java-curl is a pure-java HTTP utility implemented based on HttpURLConnection in the standard JRE, while the usage references to the commonly-used CURL command line tool under Linux. # Features -* Based on the standard JRE, the source compatibility level is 1.6, can be used on Java server-side, Android and other Java environments. +* Based on the standard JRE, the source compatibility level is 11, can be used on Java server-side, Android and other Java environments. * The code is super compact (one java file with less than 2000 lines), without any external dependencies, can be easily reused at source level. * Easy to use, fully compatible with the most common switches of CURL tool, can be directly used as a command line tool. * Support all HTTP methods; Support multi-part file uploads; Support simple HTTP authentication. diff --git a/pom.xml b/pom.xml index d857666..03a8c2d 100644 --- a/pom.xml +++ b/pom.xml @@ -1,8 +1,6 @@ - + 4.0.0 com.github.rockswang @@ -17,7 +15,7 @@ java-curl - Ultra-lightweight CURL implementation in pure java 1.6 + Ultra-lightweight CURL implementation in pure java 11 https://github.com/rockswang/java-curl @@ -55,8 +53,8 @@ maven-compiler-plugin 3.1 - 1.6 - 1.6 + 11 + 11 @@ -77,7 +75,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 2.9.1 + 3.4.0 -Xdoclint:none @@ -168,4 +166,46 @@ - + + + graalvm-native-build-tools-snapshots + GraalVM native-build-tools Snapshots + https://raw.githubusercontent.com/graalvm/native-build-tools/snapshots + + false + + + true + + + + + + + native + + + + org.graalvm.buildtools + native-maven-plugin + 0.9.11 + true + + + build-native + + build + + package + + + + com.roxstudio.utils.CUrl + + + + + + + + \ No newline at end of file From 65d2a7260d9aaeac620332467f31ebf1275f2c06 Mon Sep 17 00:00:00 2001 From: ozkanpakdil Date: Fri, 29 Apr 2022 18:33:10 +0100 Subject: [PATCH 02/23] mvn cmdline --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index e52caaa..1ee09e6 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -24,7 +24,7 @@ jobs: - name: create the native image env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: mvn -ntp -DskipTests -Pnative + run: mvn -ntp -DskipTests -Pnative package - name: Upload binary uses: actions/upload-artifact@v2 with: From c3f1e0b4a07b7de5d949fec9f12eeaacd110ddc8 Mon Sep 17 00:00:00 2001 From: ozkanpakdil Date: Fri, 29 Apr 2022 18:50:57 +0100 Subject: [PATCH 03/23] graal parameter --- pom.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pom.xml b/pom.xml index 03a8c2d..c321bf4 100644 --- a/pom.xml +++ b/pom.xml @@ -201,6 +201,9 @@ com.roxstudio.utils.CUrl + + --no-fallback + From 534ef5ca73b4a9886351a0bf84c96702b7840cfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 08:34:34 +0100 Subject: [PATCH 04/23] Update maven.yml --- .github/workflows/maven.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 1ee09e6..a85cd30 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -29,4 +29,16 @@ jobs: uses: actions/upload-artifact@v2 with: name: java-curl-${{ matrix.os }} - path: target/java-curl \ No newline at end of file + path: target/java-curl + + - name: Release with Notes + uses: softprops/action-gh-release@v1 + with: + files: | + *.deb + *.rpm + *.msi + *.dmg + tag_name: ${{ steps.tag.outputs.release_tag }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 3fc76afcfb2d398547adc55a04a9573c27d168e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 08:59:17 +0100 Subject: [PATCH 05/23] Update maven.yml --- .github/workflows/maven.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index a85cd30..1dd0e57 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -13,6 +13,11 @@ jobs: matrix: os: [macos-latest, windows-latest, ubuntu-latest] steps: + - name: Generate release tag + id: tag + run: | + TAGNAME=`date +%F` + echo "::set-output name=release_tag::1.0.$TAGNAME" - uses: graalvm/setup-graalvm@v1 with: version: "latest" From 5111937271619a62a552a9d197015efb419761d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 09:03:52 +0100 Subject: [PATCH 06/23] Update maven.yml --- .github/workflows/maven.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 1dd0e57..c778ca5 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -16,8 +16,7 @@ jobs: - name: Generate release tag id: tag run: | - TAGNAME=`date +%F` - echo "::set-output name=release_tag::1.0.$TAGNAME" + echo "::set-output name=release_tag::1.0.$GITHUB_RUN_ID" - uses: graalvm/setup-graalvm@v1 with: version: "latest" From 31eb41b59049e07b6ed5d0d685109be38eaf1ff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 09:26:45 +0100 Subject: [PATCH 07/23] Update maven.yml --- .github/workflows/maven.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index c778ca5..84fcecd 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -39,10 +39,7 @@ jobs: uses: softprops/action-gh-release@v1 with: files: | - *.deb - *.rpm - *.msi - *.dmg + target/java-curl* tag_name: ${{ steps.tag.outputs.release_tag }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 143e2350d683f0c3e7b577acf14833f046ecffab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 10:30:21 +0100 Subject: [PATCH 08/23] Update maven.yml --- .github/workflows/maven.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 84fcecd..ac410f6 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -41,5 +41,4 @@ jobs: files: | target/java-curl* tag_name: ${{ steps.tag.outputs.release_tag }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + From 9ff66fb93d8cf84457daf6a13e4e0a809324bbc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 11:53:18 +0100 Subject: [PATCH 09/23] Update maven.yml --- .github/workflows/maven.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index ac410f6..ab3cdbf 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -1,5 +1,7 @@ name: CI Build +permissions: + contents: write on: push: branches: From 6c4d23e6780449f270b0c03db80f955c33f6438b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 15:25:33 +0100 Subject: [PATCH 10/23] Update maven.yml --- .github/workflows/maven.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index ab3cdbf..3e7813f 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -30,7 +30,9 @@ jobs: - name: create the native image env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: mvn -ntp -DskipTests -Pnative package + run: | + mvn -ntp -DskipTests -Pnative package + mv target/java-curl* java-curl-${{ matrix.os }} - name: Upload binary uses: actions/upload-artifact@v2 with: From df15a5776846ac464f879a1dc0194984e9541538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 15:32:34 +0100 Subject: [PATCH 11/23] Update maven.yml --- .github/workflows/maven.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 3e7813f..f030561 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -32,7 +32,18 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | mvn -ntp -DskipTests -Pnative package - mv target/java-curl* java-curl-${{ matrix.os }} + mv target/java-curl java-curl-${{ matrix.os }} + + - name: rename + if: matrix.os == 'ubuntu-latest' + run: mv target/java-curl java-curl-${{ matrix.os }} + - name: rename + if: matrix.os == 'macos-latest' + run: mv target/java-curl java-curl-${{ matrix.os }} + - name: rename + if: matrix.os == 'windows-latest' + run: mv target/java-curl java-curl-${{ matrix.os }} + - name: Upload binary uses: actions/upload-artifact@v2 with: @@ -43,6 +54,6 @@ jobs: uses: softprops/action-gh-release@v1 with: files: | - target/java-curl* + java-curl* tag_name: ${{ steps.tag.outputs.release_tag }} From bcde7c41a2321cd7531a99c79df6316cc283f1a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 15:37:01 +0100 Subject: [PATCH 12/23] Update maven.yml --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index f030561..174882a 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -36,7 +36,7 @@ jobs: - name: rename if: matrix.os == 'ubuntu-latest' - run: mv target/java-curl java-curl-${{ matrix.os }} + run: pwd;ls -ltr;mv target/java-curl java-curl-${{ matrix.os }} - name: rename if: matrix.os == 'macos-latest' run: mv target/java-curl java-curl-${{ matrix.os }} From 34801ec6f5ce1fcbadad57502cdf9e9805b173f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 15:43:52 +0100 Subject: [PATCH 13/23] Update maven.yml --- .github/workflows/maven.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 174882a..330ab7f 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -30,19 +30,16 @@ jobs: - name: create the native image env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - mvn -ntp -DskipTests -Pnative package - mv target/java-curl java-curl-${{ matrix.os }} - + run: mvn -ntp -DskipTests -Pnative package - name: rename if: matrix.os == 'ubuntu-latest' - run: pwd;ls -ltr;mv target/java-curl java-curl-${{ matrix.os }} + run: mv target/java-curl java-curl-${{ matrix.os }} - name: rename if: matrix.os == 'macos-latest' run: mv target/java-curl java-curl-${{ matrix.os }} - name: rename if: matrix.os == 'windows-latest' - run: mv target/java-curl java-curl-${{ matrix.os }} + run: mv target/java-curl.exe java-curl-${{ matrix.os }}.exe - name: Upload binary uses: actions/upload-artifact@v2 From c2aaa9fa5838a4450dffd0c60765f0688431e604 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 16:31:54 +0100 Subject: [PATCH 14/23] Update maven.yml --- .github/workflows/maven.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 330ab7f..2d4a33f 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -50,6 +50,7 @@ jobs: - name: Release with Notes uses: softprops/action-gh-release@v1 with: + target_commitish: ${{ github.sha }} files: | java-curl* tag_name: ${{ steps.tag.outputs.release_tag }} From 8f1ea72fc22b81fd2f322fb111d2e885c7094d0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 17:23:22 +0100 Subject: [PATCH 15/23] Update maven.yml --- .github/workflows/maven.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 2d4a33f..ce7d52e 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -17,8 +17,7 @@ jobs: steps: - name: Generate release tag id: tag - run: | - echo "::set-output name=release_tag::1.0.$GITHUB_RUN_ID" + run: echo "TAG=pr-${GITHUB_REF##*/}" >> $GITHUB_ENV && echo "SHORT_SHA=`git rev-parse --short HEAD`" >> $GITHUB_ENV - uses: graalvm/setup-graalvm@v1 with: version: "latest" @@ -50,8 +49,9 @@ jobs: - name: Release with Notes uses: softprops/action-gh-release@v1 with: + prerelease: true + tag_name: ${{ env.TAG }}-${{ env.SHORT_SHA }} target_commitish: ${{ github.sha }} files: | java-curl* - tag_name: ${{ steps.tag.outputs.release_tag }} From 800f64c441f52d9acc61375add63ff49fe57ba9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 17:30:31 +0100 Subject: [PATCH 16/23] Update maven.yml --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index ce7d52e..eff3d01 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -49,8 +49,8 @@ jobs: - name: Release with Notes uses: softprops/action-gh-release@v1 with: - prerelease: true - tag_name: ${{ env.TAG }}-${{ env.SHORT_SHA }} + draft: true + tag_name: ${{ github.ref }} target_commitish: ${{ github.sha }} files: | java-curl* From 60d88f355120908b2ab1fe6f9b9bb8e098eee01e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 17:35:23 +0100 Subject: [PATCH 17/23] Update maven.yml --- .github/workflows/maven.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index eff3d01..8bb76b7 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -15,9 +15,9 @@ jobs: matrix: os: [macos-latest, windows-latest, ubuntu-latest] steps: - - name: Generate release tag - id: tag - run: echo "TAG=pr-${GITHUB_REF##*/}" >> $GITHUB_ENV && echo "SHORT_SHA=`git rev-parse --short HEAD`" >> $GITHUB_ENV +# - name: Generate release tag +# id: tag +# run: echo "TAG=pr-${GITHUB_REF##*/}" >> $GITHUB_ENV && echo "SHORT_SHA=`git rev-parse --short HEAD`" >> $GITHUB_ENV - uses: graalvm/setup-graalvm@v1 with: version: "latest" From bd8e49452c8b2092e3fc0edb19b41282911dbc47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 17:50:20 +0100 Subject: [PATCH 18/23] Update maven.yml --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 8bb76b7..03a5530 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -50,7 +50,7 @@ jobs: uses: softprops/action-gh-release@v1 with: draft: true - tag_name: ${{ github.ref }} + tag_name: ${{ github.event.repository.updated_at }} target_commitish: ${{ github.sha }} files: | java-curl* From 0b41c9cd7b7a1852bf58aed814e59b7920cc1854 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 17:57:12 +0100 Subject: [PATCH 19/23] Update maven.yml --- .github/workflows/maven.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 03a5530..17b446c 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -15,9 +15,6 @@ jobs: matrix: os: [macos-latest, windows-latest, ubuntu-latest] steps: -# - name: Generate release tag -# id: tag -# run: echo "TAG=pr-${GITHUB_REF##*/}" >> $GITHUB_ENV && echo "SHORT_SHA=`git rev-parse --short HEAD`" >> $GITHUB_ENV - uses: graalvm/setup-graalvm@v1 with: version: "latest" @@ -49,7 +46,6 @@ jobs: - name: Release with Notes uses: softprops/action-gh-release@v1 with: - draft: true tag_name: ${{ github.event.repository.updated_at }} target_commitish: ${{ github.sha }} files: | From a5275b01620c407ea13ecd486ebe9eb33c5c9e10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 18:03:31 +0100 Subject: [PATCH 20/23] Update maven.yml --- .github/workflows/maven.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 17b446c..1886621 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -46,6 +46,7 @@ jobs: - name: Release with Notes uses: softprops/action-gh-release@v1 with: + prerelease: true tag_name: ${{ github.event.repository.updated_at }} target_commitish: ${{ github.sha }} files: | From 8166f1619e1cde22b1d768c2313d61a8465de0f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 18:13:05 +0100 Subject: [PATCH 21/23] Update maven.yml --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 1886621..a573b91 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -46,7 +46,7 @@ jobs: - name: Release with Notes uses: softprops/action-gh-release@v1 with: - prerelease: true + draft: true tag_name: ${{ github.event.repository.updated_at }} target_commitish: ${{ github.sha }} files: | From 99db9dd3f49a904efa680c9ab2acde5dbcefa4c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=B6zkan=20pakdil?= Date: Fri, 29 Jul 2022 18:23:26 +0100 Subject: [PATCH 22/23] Update maven.yml --- .github/workflows/maven.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index a573b91..9836e50 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -46,8 +46,8 @@ jobs: - name: Release with Notes uses: softprops/action-gh-release@v1 with: - draft: true - tag_name: ${{ github.event.repository.updated_at }} +# draft: true + tag_name: ${{ github.run_number }}.${{ github.run_id }} target_commitish: ${{ github.sha }} files: | java-curl* From b96e4d76894f7855ca82cf28847c3e6307e57763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zkan=20Pakdil?= Date: Mon, 18 Mar 2024 21:54:50 +0000 Subject: [PATCH 23/23] merge from upper stream --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index b25e2e4..69ab35e 100644 --- a/pom.xml +++ b/pom.xml @@ -55,8 +55,8 @@ maven-compiler-plugin 3.1 - 11 - 11 + 17 + 17 @@ -190,7 +190,7 @@ org.graalvm.buildtools native-maven-plugin - 0.9.11 + 0.10.1 true