Skip to content

Commit

Permalink
build.gradle: exclude 'binexport' and '.github' from distribution (#29)
Browse files Browse the repository at this point in the history
* build.gradle: exclude 'binexport' and '.github' from distribution

* build.gradle: removed non-working old code to exclude binexport code from distribution
  • Loading branch information
SmileyAG authored Sep 28, 2024
1 parent 7ead088 commit 155a058
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -54,4 +50,7 @@ else {

tasks.named("copyDependencies").configure {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
}

buildExtension.exclude '.github/**'
buildExtension.exclude 'binexport/**'

0 comments on commit 155a058

Please sign in to comment.