Skip to content

Commit e89f3c1

Browse files
committed
Update to Ghidra 10.2, and clear up README a bit
1 parent 82ce57a commit e89f3c1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.idea/runConfigurations/Run_Ghidra.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
* Open IntelliJ, create a new `Project from Existing Sources...` and select the `build.gradle`
1111
* If you are using the [Kotlin Jupyter Plugin](https://github.com/GhidraJupyter/ghidra-jupyter-kotlin) uncomment the line in the `dependencies` block in the `build.gradle`
1212
* Wait for IntelliJ to finish indexing and fetching dependencies, hit the build button, and then run Ghidra
13-
13+
* if you are getting an error when running that is `Caused by: java.lang.ClassNotFoundException: ghidra.GhidraClassLoader`, check that the class path of the run configuration is `projectname.main" and not just `projectname`
1414

1515
## Features
1616

1717
* Gradle Config that works out of the box with IntelliJ
1818
* IntelliJ IDEA Run Configuration for debugging of the extension
19-
* If you have are using the [Kotlin Jupyter Plugin](https://github.com/GhidraJupyter/ghidra-jupyter-kotlin) you can also set breakpoints in the script file!
19+
* If you are using the [Kotlin Jupyter Plugin](https://github.com/GhidraJupyter/ghidra-jupyter-kotlin) you can also set breakpoints in the script file!
2020
* GitHub CI files that
2121
* make sure the extension at least builds for each PR
2222
* will automatically build a release and publish it on GitHub if a commit is tagged with a version matching `vX.X.X`, e.g. `v1.2.3`/`v1.2.0` (`v1.2` doesn't work!)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ else {
3939
// IntelliJ will complain about the discrepancy between the Java and the Kotlin target otherwise
4040
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
4141
kotlinOptions {
42-
jvmTarget = "11"
42+
jvmTarget = "17"
4343
}
4444
}
4545

0 commit comments

Comments
 (0)