From 155a0583598403d60a0b285863203250304d96c1 Mon Sep 17 00:00:00 2001 From: SmileyAG Date: Sat, 28 Sep 2024 13:05:56 +0400 Subject: [PATCH] build.gradle: exclude 'binexport' and '.github' from distribution (#29) * build.gradle: exclude 'binexport' and '.github' from distribution * build.gradle: removed non-working old code to exclude binexport code from distribution --- build.gradle | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 10e90ae..1a5debe 100644 --- a/build.gradle +++ b/build.gradle @@ -25,10 +25,6 @@ dependencies { implementation 'org.xerial:sqlite-jdbc:3.46.0.1' } -jar { - exclude('binexport') -} - // Standard Ghidra extension Gradle code follows. //----------------------START "DO NOT MODIFY" SECTION------------------------------ def ghidraInstallDir @@ -54,4 +50,7 @@ else { tasks.named("copyDependencies").configure { duplicatesStrategy = DuplicatesStrategy.EXCLUDE -} \ No newline at end of file +} + +buildExtension.exclude '.github/**' +buildExtension.exclude 'binexport/**'