Fix gradle build files

This commit is contained in:
Manfred Karrer 2018-09-18 23:44:19 -05:00
parent 751097b2a0
commit ede7d989ba
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46
2 changed files with 14 additions and 17 deletions

View File

@ -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")

View File

@ -1,24 +1,19 @@
plugins {
id "java"
id "org.springframework.boot" version "1.5.10.RELEASE"
id 'java'
id 'application'
}
group = 'network.bisq'
version = '0.8.0-SNAPSHOT'
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"
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 {
@ -26,11 +21,12 @@ dependencies {
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