27 lines
1.0 KiB
Groovy
27 lines
1.0 KiB
Groovy
apply from: "$rootProject.projectDir/gradle/distributableGhidraModule.gradle"
|
|
apply from: "$rootProject.projectDir/gradle/javaProject.gradle"
|
|
apply from: "$rootProject.projectDir/gradle/helpProject.gradle"
|
|
apply from: "$rootProject.projectDir/gradle/jacocoProject.gradle"
|
|
apply from: "$rootProject.projectDir/gradle/javaTestProject.gradle"
|
|
apply plugin: 'eclipse'
|
|
|
|
eclipse.project.name = 'Features Graph FunctionCalls'
|
|
|
|
|
|
// Note: this module's name is 'GraphFunctionCalls'
|
|
dependencies {
|
|
compile project(":Base")
|
|
|
|
helpPath project(path: ":Base", configuration: 'helpPath')
|
|
|
|
// This is needed now because we like to the help of the FunctionGraph. If and when that
|
|
// help is extracted to a higher-level help page, like 'Graphing', then this link should be
|
|
// removed
|
|
helpPath project(path: ":FunctionGraph", configuration: 'helpPath')
|
|
|
|
// These have abstract test classes and stubs needed by this module
|
|
testCompile project(path: ':Project', configuration: 'testArtifacts')
|
|
testCompile project(path: ':SoftwareModeling', configuration: 'testArtifacts')
|
|
|
|
}
|