bisq/pricenode/build.gradle

24 lines
677 B
Groovy
Raw Normal View History

2018-09-14 11:45:35 +02:00
plugins {
id "org.springframework.boot" version "1.5.10.RELEASE"
}
version = file("src/main/resources/version.txt").text
jar.manifest.attributes(
"Implementation-Title": project.name,
2018-09-14 11:45:35 +02:00
"Implementation-Version": version)
dependencies {
compile project(":core")
2018-09-18 23:44:19 -05:00
compile project(":assets")
2018-09-14 11:45:35 +02:00
compile("org.knowm.xchange:xchange-bitcoinaverage:4.3.3")
compile("org.knowm.xchange:xchange-coinmarketcap:4.3.3")
compile("org.knowm.xchange:xchange-poloniex:4.3.3")
compile("org.springframework.boot:spring-boot-starter-web:1.5.10.RELEASE")
compile("org.springframework.boot:spring-boot-starter-actuator")
}
task stage {
dependsOn assemble
}