mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 19:25:56 +00:00
24 lines
534 B
Groovy
24 lines
534 B
Groovy
apply plugin: 'application'
|
|
|
|
mainClassName = "wherehows.main.ApplicationStart"
|
|
|
|
dependencies {
|
|
compile project(':wherehows-common')
|
|
compile project(':wherehows-ingestion')
|
|
compile externalDependency.akka
|
|
compile externalDependency.slf4j_api
|
|
compile externalDependency.logback
|
|
|
|
compile externalDependency.kafka_clients
|
|
compile externalDependency.confluent_avro_serde
|
|
|
|
compileOnly externalDependency.lombok
|
|
|
|
testCompile externalDependency.testng
|
|
}
|
|
|
|
test {
|
|
// enable TestNG support (default is JUnit)
|
|
useTestNG()
|
|
}
|