Skip to content

Commit

Permalink
Merge pull request #1696 from ManfredKarrer/master
Browse files Browse the repository at this point in the history
Fix gradle build files, update docs
  • Loading branch information
ripcurlx authored Sep 19, 2018
2 parents 61caac0 + ede7d98 commit 1477dda
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For more information, see https://bisq-network/intro and for step-by-step gettin

## Building Bisq

You will need [JDK 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html) installed to complete the following instructions.
You will need [JDK 10](https://www.oracle.com/technetwork/java/javase/downloads/jdk10-downloads-4416644.html) installed to complete the following instructions.

1. Clone the Bisq source code and cd into `bisq`

Expand Down
1 change: 1 addition & 0 deletions pricenode/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ repositories {

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")
Expand Down
30 changes: 13 additions & 17 deletions relay/build.gradle
Original file line number Diff line number Diff line change
@@ -1,36 +1,32 @@
plugins {
id "java"
id "org.springframework.boot" version "1.5.10.RELEASE"
id 'java'
id 'application'
}

sourceCompatibility = 1.10
targetCompatibility = 1.10

version = file("src/main/resources/version.txt").text
group = 'network.bisq'
version = '0.8.0-SNAPSHOT'

jar.manifest.attributes(
"Implementation-Title": rootProject.name,
"Implementation-Version": version)
sourceCompatibility = 1.10

jar.archiveName "${rootProject.name}.jar"
mainClassName = 'bisq.monitor.MonitorMain'

repositories {
mavenLocal()
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/" }
maven { url 'https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/' }
}

dependencies {
compile project(":common")
compile("com.sparkjava:spark-core:2.5.2")
compile("com.turo:pushy:0.13.2")
compile("com.google.firebase:firebase-admin:6.2.0")

compile 'commons-codec:commons-codec:1.9'
compileOnly 'org.projectlombok:lombok:1.18.2'
//annotationProcessor 'org.projectlombok:lombok:1.18.2'
annotationProcessor 'org.projectlombok:lombok:1.18.2'
}

task stage {
dependsOn assemble
}
build.dependsOn installDist
installDist.destinationDir = file('build/app')
distZip.enabled = false

0 comments on commit 1477dda

Please sign in to comment.