mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
36 lines
958 B
Groovy
36 lines
958 B
Groovy
plugins {
|
|
id "java"
|
|
id "org.springframework.boot" version "1.5.10.RELEASE"
|
|
}
|
|
|
|
sourceCompatibility = 1.10
|
|
targetCompatibility = 1.10
|
|
|
|
version = file("src/main/resources/version.txt").text
|
|
|
|
jar.manifest.attributes(
|
|
"Implementation-Title": rootProject.name,
|
|
"Implementation-Version": version)
|
|
|
|
jar.archiveName "${rootProject.name}.jar"
|
|
|
|
repositories {
|
|
jcenter()
|
|
maven { url "https://jitpack.io" }
|
|
maven { url "https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/" }
|
|
}
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile project(":assets")
|
|
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
|
|
}
|