mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-27 00:40:06 +00:00
28 lines
715 B
Groovy
28 lines
715 B
Groovy
apply plugin: 'application'
|
|
|
|
mainClassName = "wherehows.main.ApplicationStart"
|
|
|
|
dependencies {
|
|
compile project(':wherehows-common')
|
|
compile project(':wherehows-dao')
|
|
compile externalDependency.jackson_databind
|
|
compile externalDependency.akka
|
|
compile externalDependency.mysql
|
|
compile externalDependency.guava
|
|
compile externalDependency.slf4j_api
|
|
compile externalDependency.logback
|
|
|
|
compile externalDependency.kafka_clients
|
|
compile externalDependency.confluent_avro_serde
|
|
|
|
compileOnly externalDependency.lombok
|
|
|
|
testCompile externalDependency.testng
|
|
testCompile externalDependency.mockito
|
|
}
|
|
|
|
test {
|
|
// enable TestNG support (default is JUnit)
|
|
useTestNG()
|
|
}
|