2017-03-21 11:58:19 -07:00
|
|
|
apply from: '../gradle/scripts/play.gradle'
|
2015-11-19 14:39:21 -08:00
|
|
|
|
2017-03-21 11:37:38 -07:00
|
|
|
// Change this to listen on a different port
|
|
|
|
project.ext.httpPort = 19000
|
2017-03-21 11:58:19 -07:00
|
|
|
project.ext.playBinaryBaseName = "wherehows-backend"
|
2017-03-21 11:37:38 -07:00
|
|
|
|
|
|
|
dependencies{
|
|
|
|
// User defined libraries (will be copied to lib/ before `play compile`)
|
|
|
|
play project(":wherehows-common")
|
2017-05-02 17:15:30 -07:00
|
|
|
play project(":wherehows-etl")
|
2015-11-19 14:39:21 -08:00
|
|
|
|
2017-03-21 11:37:38 -07:00
|
|
|
play externalDependency.play_java_jdbc
|
|
|
|
play externalDependency.slf4j_api
|
|
|
|
play externalDependency.jasypt
|
|
|
|
play externalDependency.kafka
|
|
|
|
play externalDependency.kafka_clients
|
2015-11-19 14:39:21 -08:00
|
|
|
|
2017-03-21 11:37:38 -07:00
|
|
|
playTest 'org.easytesting:fest-assert-core:2.0M10'
|
|
|
|
playTest externalDependency.mockito
|
|
|
|
}
|
2016-10-19 17:08:07 -07:00
|
|
|
|
2017-03-21 11:37:38 -07:00
|
|
|
configurations {
|
2016-10-19 17:08:07 -07:00
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
2015-11-19 14:39:21 -08:00
|
|
|
}
|