mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-28 18:38:17 +00:00
36 lines
805 B
Groovy
36 lines
805 B
Groovy
apply plugin: 'java'
|
|
apply plugin: 'findbugs'
|
|
|
|
dependencies {
|
|
compile project(':wherehows-data-model')
|
|
compile externalDependency.commons_lang3
|
|
compile externalDependency.slf4j_api
|
|
compile externalDependency.spring_jdbc
|
|
compile externalDependency.jackson_databind
|
|
compile externalDependency.jackson_core
|
|
compile externalDependency.jackson_annotations
|
|
compile externalDependency.lombok
|
|
compile externalDependency.jsr305
|
|
compile externalDependency.guava
|
|
compile externalDependency.hibernate_core
|
|
compile externalDependency.hibernate_hikaricp
|
|
|
|
testCompile externalDependency.testng
|
|
}
|
|
|
|
findbugs {
|
|
ignoreFailures = true
|
|
}
|
|
|
|
tasks.withType(FindBugs) {
|
|
reports {
|
|
xml.enabled false
|
|
html.enabled true
|
|
}
|
|
}
|
|
|
|
test {
|
|
// enable TestNG support (default is JUnit)
|
|
useTestNG()
|
|
}
|