From 7ead088e4d4253451334e4e15ddad643628bb71e Mon Sep 17 00:00:00 2001 From: SmileyAG Date: Sat, 28 Sep 2024 11:40:21 +0400 Subject: [PATCH] CI, build.gradle: java updated to version 21 (#28) * CI, build.gradle: java updated to version 21 * binexport: updated submodule to be able to compile with JDK 21 * README.md: changed JDK 17 to JDK 21 --- .github/workflows/main.yml | 2 +- Readme.md | 2 +- binexport | 2 +- build.gradle | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6d13ea4..a1d2957 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,7 +32,7 @@ jobs: uses: actions/setup-java@v4 with: distribution: 'temurin' - java-version: '17' + java-version: '21' - name: Install Gradle uses: gradle/actions/setup-gradle@v3 diff --git a/Readme.md b/Readme.md index 1d72333..15c9f3d 100644 --- a/Readme.md +++ b/Readme.md @@ -105,7 +105,7 @@ Select the other file from the tree and click OK. Requirements: * Ghidra installation (https://ghidra-sre.org) or compiled from source -* Some jdk. There might be certain restrictions depending on how your Ghidra was built and what other plugins you're using. I recommend using [Temurin 17 LTS](https://adoptium.net/temurin/releases/?version=17), as this currently seems to work with both BinExport and BinDiffHelper. +* Some jdk. There might be certain restrictions depending on how your Ghidra was built and what other plugins you're using. I recommend using [Temurin 21 LTS](https://adoptium.net/temurin/releases/?version=21), as this currently seems to work with both BinExport and BinDiffHelper. * gradle (tested with 7.5, 8.10) ### Clone the repository diff --git a/binexport b/binexport index 757381f..dd6f724 160000 --- a/binexport +++ b/binexport @@ -1 +1 @@ -Subproject commit 757381f3ff207c6a37dbf32bc6e37c6a29c9f6be +Subproject commit dd6f72422750c425b37cf3e755d0901dd83db9cb diff --git a/build.gradle b/build.gradle index 571b2de..10e90ae 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ apply plugin: 'eclipse' java { toolchain { - languageVersion = JavaLanguageVersion.of(17) + languageVersion = JavaLanguageVersion.of(21) } }