mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
22 lines
877 B
Groovy
22 lines
877 B
Groovy
apply from: "$rootProject.projectDir/gradle/distributableGhidraModule.gradle"
|
|
apply from: "$rootProject.projectDir/gradle/javaProject.gradle"
|
|
apply from: "$rootProject.projectDir/gradle/jacocoProject.gradle"
|
|
apply from: "$rootProject.projectDir/gradle/javaTestProject.gradle"
|
|
apply plugin: 'eclipse'
|
|
|
|
eclipse.project.name = 'Framework Graph'
|
|
|
|
dependencies {
|
|
compile project(':Docking')
|
|
|
|
// these are not used by the project, but indirectly by the jars listed below
|
|
compile "net.sf.jung:jung-api:2.1.1" // used by jung-graph-impl
|
|
compile "net.sf.jung:jung-algorithms:2.1.1" // used by jung-visualization
|
|
|
|
// this project uses these directly
|
|
compile "net.sf.jung:jung-graph-impl:2.1.1"
|
|
compile "net.sf.jung:jung-visualization:2.1.1"
|
|
|
|
// These have abstract test classes and stubs needed by this module
|
|
testCompile project(':Docking').sourceSets.test.output
|
|
}
|