Skip to content

Commit

Permalink
CI, build.gradle: java updated to version 21 (#28)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
SmileyAG authored Sep 28, 2024
1 parent a9edd7a commit 7ead088
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion binexport
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'eclipse'

java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
languageVersion = JavaLanguageVersion.of(21)
}
}

Expand Down

0 comments on commit 7ead088

Please sign in to comment.