Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated gradle version and subsequent file fixes for Ghidra 11.2 #16

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,17 @@ configurations {

dependencies {
toCopy 'org.json:json:20200518'
implementation configurations.toCopy
implementation files(configurations.toCopy.files)
}

task copyToLib(type: Copy) {
from configurations.toCopy
into 'lib'
}

// Ensure copyToLib runs before compileJava and copyDependencies
// This was probably a hack, IDK
tasks.compileJava.dependsOn copyToLib
tasks.copyDependencies.dependsOn copyToLib

processResources.dependsOn copyToLib
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists