mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Pull up remaining pricenode config to root
This commit is contained in:
parent
2f7c5f1150
commit
15b81df32f
25
build.gradle
25
build.gradle
@ -7,6 +7,7 @@ buildscript {
|
||||
classpath 'com.google.gradle:osdetector-gradle-plugin:1.6.0'
|
||||
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
|
||||
classpath files('gradle/witness/gradle-witness.jar')
|
||||
classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.10.RELEASE'
|
||||
}
|
||||
}
|
||||
|
||||
@ -245,3 +246,27 @@ configure(project(':monitor')) {
|
||||
annotationProcessor 'org.projectlombok:lombok:1.18.2'
|
||||
}
|
||||
}
|
||||
|
||||
configure(project(':pricenode')) {
|
||||
apply plugin: "org.springframework.boot"
|
||||
|
||||
version = file("src/main/resources/version.txt").text
|
||||
|
||||
jar.manifest.attributes(
|
||||
"Implementation-Title": project.name,
|
||||
"Implementation-Version": version)
|
||||
|
||||
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
|
||||
}
|
||||
}
|
||||
|
@ -1,23 +0,0 @@
|
||||
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,
|
||||
"Implementation-Version": version)
|
||||
|
||||
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
|
||||
}
|
Loading…
Reference in New Issue
Block a user