ghidra/gradle/distributableGPLModule.gradle

14 lines
261 B
Groovy

apply from: "$rootProject.projectDir/gradle/distributableGhidraModule.gradle"
rootProject.assembleDistribution {
def p = this.project
def zipPath = getZipPath(p)
from (p.projectDir.toString()) {
exclude "bin"
exclude "build"
into { zipPath }
}
}