28 lines
921 B
Groovy
28 lines
921 B
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 Services'
|
|
|
|
|
|
dependencies {
|
|
compile project(":Base")
|
|
|
|
compile "com.github.tomnelson:jungrapht-visualization:1.0"
|
|
compile "com.github.tomnelson:jungrapht-layout:1.0"
|
|
|
|
runtime "org.slf4j:slf4j-api:1.7.25"
|
|
// use this if you want no slf4j log messages
|
|
runtime "org.slf4j:slf4j-nop:1.7.25"
|
|
// use this if you want slf4j log messages sent to log4j
|
|
// runtime "org.apache.logging.log4j:log4j-slf4j-impl:2.12.1"
|
|
runtime "org.jheaps:jheaps:0.13"
|
|
|
|
helpPath project(path: ":Base", configuration: 'helpPath')
|
|
|
|
}
|
|
|