Skip to content

Commit

Permalink
Added json lib load
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgenii Rasskazov committed Sep 30, 2020
1 parent 704c43b commit d76bd6e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,25 @@ else {
throw new GradleException("GHIDRA_INSTALL_DIR is not defined!")
}
//----------------------END "DO NOT MODIFY" SECTION-------------------------------

apply plugin: 'base'

repositories {
mavenCentral()
}

configurations {
toCopy
}

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

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

processResources.dependsOn copyToLib

0 comments on commit d76bd6e

Please sign in to comment.