27 lines
1007 B
Groovy
27 lines
1007 B
Groovy
/*****************************************************************************************
|
|
This file is a "mix-in" gradle script that individual gradle projects should include if it
|
|
has content that should be included in a distribution as an extension. Including this
|
|
will cause all the standard module files to be included in the build as a sub-zipped extension.
|
|
|
|
A gradle project can add itself as an extension to the build distribution by adding the
|
|
following to its build.gradle file:
|
|
|
|
apply from: "$rootProject.projectDir/gradle/support/distributableGhidraModule.gradle"
|
|
*****************************************************************************************/
|
|
|
|
apply from: "$rootProject.projectDir/gradle/distributableGhidraExtension.gradle"
|
|
|
|
zipExtensions {
|
|
def p = this.project
|
|
from (p.projectDir) {
|
|
exclude 'build/**'
|
|
exclude 'certification.manifest'
|
|
exclude "*.project"
|
|
exclude "*.classpath"
|
|
exclude '.settings/**'
|
|
exclude 'bin/**'
|
|
|
|
into { getBaseProjectName(p) }
|
|
}
|
|
}
|