ghidra/Ghidra/Framework/Graph/build.gradle
2019-04-23 15:20:26 -04:00

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
}