mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
22 lines
503 B
Groovy
22 lines
503 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
mainClassName = 'bisq.statistics.StatisticsMain'
|
|
|
|
repositories {
|
|
jcenter()
|
|
maven { url "https://jitpack.io" }
|
|
maven { url 'https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/' }
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':core')
|
|
compileOnly 'org.projectlombok:lombok:1.18.2'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.2'
|
|
}
|
|
|
|
build.dependsOn installDist
|
|
installDist.destinationDir = file('build/app')
|
|
distZip.enabled = false
|