datahub/wherehows-kafka/build.gradle

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()
}