datahub/wherehows-backend/build.gradle

36 lines
957 B
Groovy
Raw Normal View History

apply from: '../gradle/scripts/play.gradle'
2015-11-19 14:39:21 -08:00
// Change this to listen on a different port
project.ext.httpPort = 19001
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")
2017-08-03 15:04:56 -07:00
play project(":wherehows-dao")
2015-11-19 14:39:21 -08:00
play externalDependency.play_java_jdbc
play externalDependency.slf4j_api
play externalDependency.jasypt
2015-11-19 14:39:21 -08:00
playTest 'com.github.stefanbirkner:system-rules:1.16.0'
playTest 'org.easytesting:fest-assert-core:2.0M10'
playTest externalDependency.mockito
}
2016-10-19 17:08:07 -07:00
model {
distributions {
playBinary {
contents {
from("jobs") {
into "jobs"
}
from("../wherehows-data-model/ELASTICSEARCH") {
into "ELASTICSEARCH"
}
}
}
}
}