Skip to content

Commit

Permalink
Pull up remaining pricenode config to root
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeams committed Nov 4, 2018
1 parent 2f7c5f1 commit 15b81df
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 23 deletions.
25 changes: 25 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}

Expand Down Expand Up @@ -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
}
}
23 changes: 0 additions & 23 deletions pricenode/build.gradle

This file was deleted.

0 comments on commit 15b81df

Please sign in to comment.