mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-13 04:02:34 +00:00

* Rename web to wherehows-api and update README. * Rename backend-service to wherehows-backend * Rename metadata-etl to wherehows-etl * Rename hadoop-dataset-extractor-standalone to wherehows-hadoop
34 lines
1.0 KiB
Groovy
34 lines
1.0 KiB
Groovy
apply from: '../gradle/scripts/play.gradle'
|
|
|
|
// Change this to listen on a different port
|
|
project.ext.httpPort = 19000
|
|
project.ext.playBinaryBaseName = "wherehows-backend"
|
|
|
|
dependencies{
|
|
// User defined libraries (will be copied to lib/ before `play compile`)
|
|
play project(":wherehows-common")
|
|
play project(":wherehows-etl")
|
|
|
|
play externalDependency.play_java_jdbc
|
|
play externalDependency.slf4j_api
|
|
play externalDependency.jasypt
|
|
play externalDependency.kafka
|
|
play externalDependency.kafka_clients
|
|
|
|
playTest 'org.easytesting:fest-assert-core:2.0M10'
|
|
playTest externalDependency.mockito
|
|
}
|
|
|
|
configurations {
|
|
all*.exclude group: 'org.slf4j', module: 'slf4j-log4j12'
|
|
all*.exclude group: 'log4j'
|
|
|
|
all*.resolutionStrategy {
|
|
dependencySubstitution {
|
|
substitute module('org.slf4j:slf4j-log4j12') with module('ch.qos.logback:logback-classic:1.1.7')
|
|
//prefer 'log4j-over-slf4j' over 'log4j'
|
|
force 'com.typesafe:config:1.3.1', 'io.netty:netty:3.10.6.Final'
|
|
}
|
|
}
|
|
}
|