mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-23 09:32:04 +00:00
36 lines
957 B
Groovy
36 lines
957 B
Groovy
apply from: '../gradle/scripts/play.gradle'
|
|
|
|
// 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")
|
|
play project(":wherehows-dao")
|
|
|
|
play externalDependency.play_java_jdbc
|
|
play externalDependency.slf4j_api
|
|
play externalDependency.jasypt
|
|
|
|
playTest 'com.github.stefanbirkner:system-rules:1.16.0'
|
|
playTest 'org.easytesting:fest-assert-core:2.0M10'
|
|
playTest externalDependency.mockito
|
|
}
|
|
|
|
model {
|
|
distributions {
|
|
playBinary {
|
|
contents {
|
|
from("jobs") {
|
|
into "jobs"
|
|
}
|
|
from("../wherehows-data-model/ELASTICSEARCH") {
|
|
into "ELASTICSEARCH"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|