2018-09-14 11:48:49 +02:00
|
|
|
plugins {
|
2018-09-19 06:44:19 +02:00
|
|
|
id 'java'
|
|
|
|
id 'application'
|
2018-09-14 11:48:49 +02:00
|
|
|
}
|
|
|
|
|
2018-09-19 06:44:19 +02:00
|
|
|
group = 'network.bisq'
|
|
|
|
version = '0.8.0-SNAPSHOT'
|
2018-09-14 11:48:49 +02:00
|
|
|
|
2018-09-19 06:44:19 +02:00
|
|
|
sourceCompatibility = 1.10
|
2018-09-14 11:48:49 +02:00
|
|
|
|
2018-09-19 06:44:19 +02:00
|
|
|
mainClassName = 'bisq.monitor.MonitorMain'
|
2018-09-14 11:48:49 +02:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
2018-09-19 06:44:19 +02:00
|
|
|
maven { url 'https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/' }
|
2018-09-14 11:48:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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")
|
2018-09-19 06:44:19 +02:00
|
|
|
compile 'commons-codec:commons-codec:1.9'
|
2018-09-17 13:37:03 +02:00
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.2'
|
2018-09-19 06:44:19 +02:00
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.2'
|
2018-09-14 11:48:49 +02:00
|
|
|
}
|
|
|
|
|
2018-09-19 06:44:19 +02:00
|
|
|
build.dependsOn installDist
|
|
|
|
installDist.destinationDir = file('build/app')
|
|
|
|
distZip.enabled = false
|
|
|
|
|