Skip to content

Commit

Permalink
build.gradle: Remove XZ for Java dependency
Browse files Browse the repository at this point in the history
This was originally added in cd74930 in order
to support LZMA in Apache Commons Compress (included by Ghidra). Recent releases
of Ghidra already include XZ for Java, so there's no need to include it in
ghidra-firmware-utils. See #25 for more info.
  • Loading branch information
al3xtjames committed Apr 13, 2023
1 parent caf29ba commit b5781f4
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,23 +77,7 @@ model {
}
}

repositories {
mavenCentral()
}

configurations {
toCopy
}

dependencies {
toCopy group: "org.tukaani", name: "xz", version: "1.8"
}

task copyLibraries(type: Copy, dependsOn: "efidecompressSharedLibrary") {
copy {
from configurations.toCopy into "lib"
}

if (Os.isFamily(Os.FAMILY_MAC)) {
from "$buildDir/libs/efidecompress/shared/libefidecompress.dylib" into "os/mac_x86_64"
} else if (Os.isFamily(Os.FAMILY_UNIX)) {
Expand Down

0 comments on commit b5781f4

Please sign in to comment.