Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix gradle build files, update docs #1696

Merged
merged 2 commits into from
Sep 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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