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
|
2017-08-03 15:40:34 -07:00
|
|
|
project.ext.httpPort = 19001
|
2017-03-21 11:58:19 -07:00
|
|
|
project.ext.playBinaryBaseName = "wherehows-backend"
|
2017-03-21 11:37:38 -07:00
|
|
|
|
2017-06-16 15:04:46 -07:00
|
|
|
dependencies {
|
2017-03-21 11:37:38 -07:00
|
|
|
// 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")
|
2017-08-03 15:04:56 -07:00
|
|
|
play project(":wherehows-dao")
|
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
|
2015-11-19 14:39:21 -08:00
|
|
|
|
2017-06-05 15:40:05 -07:00
|
|
|
playTest 'com.github.stefanbirkner:system-rules:1.16.0'
|
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-06-05 15:40:05 -07:00
|
|
|
model {
|
|
|
|
distributions {
|
|
|
|
playBinary {
|
|
|
|
contents {
|
|
|
|
from("jobs") {
|
|
|
|
into "jobs"
|
|
|
|
}
|
2017-10-25 11:27:57 -07:00
|
|
|
from("../wherehows-data-model/ELASTICSEARCH") {
|
|
|
|
into "ELASTICSEARCH"
|
|
|
|
}
|
2017-06-05 15:40:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|