19 lines
541 B
Groovy
19 lines
541 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 = 'Features Recognizers'
|
|
|
|
dependencies {
|
|
compile project(':Base')
|
|
}
|
|
|
|
test {
|
|
// temporary to prevent test from running when building
|
|
// specify a pattern that doesn't match any test files.
|
|
include "dontruntests"
|
|
}
|
|
|