mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-01 19:25:56 +00:00
25 lines
688 B
Groovy
25 lines
688 B
Groovy
apply from: '../gradle/scripts/play.gradle'
|
|
|
|
// Change this to listen on a different port
|
|
project.ext.httpPort = 9000
|
|
project.ext.playBinaryBaseName = "wherehows-frontend"
|
|
|
|
dependencies{
|
|
play project(':restli-client')
|
|
|
|
play externalDependency.play_java_ws
|
|
play externalDependency.play_java_jdbc
|
|
play externalDependency.play_filter
|
|
play externalDependency.play_cache
|
|
play externalDependency.spring_jdbc
|
|
play externalDependency.mysql
|
|
|
|
playTest 'org.easytesting:fest-assert-core:2.0M10'
|
|
playTest externalDependency.mockito
|
|
}
|
|
|
|
configurations {
|
|
all*.exclude group: 'org.slf4j', module: 'slf4j-log4j12'
|
|
all*.exclude group: 'log4j', module: 'log4j'
|
|
}
|