Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Prepare for new JVM
  • Loading branch information
kotcrab committed Nov 3, 2024
1 parent 222be39 commit 68b0d02
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
*.sla
*.zip
.kotlin/

## Java

*.class
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
- [#36](https://github.com/kotcrab/ghidra-allegrex/issues/36) - Fixed importing binaries with debug symbols
- [#27](https://github.com/kotcrab/ghidra-allegrex/issues/27) - Fixed processing of HI16/16 relocation pairs
- [#39](https://github.com/kotcrab/ghidra-allegrex/issues/39) - Fixed handling of `vtfm` and `vhtfm` instructions
- Updated internal dependencies

#### Version 19.1
- Added build for Ghidra 11.1.1
Expand Down
12 changes: 5 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

// Builds a Ghidra Extension for a given Ghidra installation.
//
// An absolute path to the Ghidra installation directory must be supplied either by setting the
Expand Down Expand Up @@ -33,11 +31,11 @@ if (ghidraInstallDir) {
//----------------------END "DO NOT MODIFY" SECTION-------------------------------

buildscript {
ext.kotlinVersion = '1.9.24'
ext.kotlinCoroutinesVersion = '1.6.3-native-mt'
ext.ktorVersion = '2.3.11'
ext.kotlinVersion = '2.0.21'
ext.kotlinCoroutinesVersion = '1.7.1'
ext.ktorVersion = '2.3.12'
ext.testGsonVersion = '2.9.0'
ext.testLog4j2Version = '2.23.1'
ext.testLog4j2Version = '2.24.1'
repositories {
mavenCentral()
}
Expand Down Expand Up @@ -71,7 +69,7 @@ dependencies {
}

kotlin {
compilerOptions.jvmTarget.set(JvmTarget.JVM_17)
jvmToolchain(17)
}

def ghidraUserDir
Expand Down

0 comments on commit 68b0d02

Please sign in to comment.