2018-09-05 10:52:42 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'maven'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'network.bisq'
|
|
|
|
version = '-SNAPSHOT'
|
|
|
|
|
2018-09-07 11:35:45 +02:00
|
|
|
sourceCompatibility = 1.10
|
2018-09-05 10:52:42 +02:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
maven { url 'https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-08-18 14:07:46 +02:00
|
|
|
compile project(':common')
|
2018-09-05 10:52:42 +02:00
|
|
|
compile('com.github.JesusMcCloud.netlayer:tor.native:0.4.2') {
|
|
|
|
exclude(module: 'slf4j-api')
|
|
|
|
}
|
|
|
|
compile('org.apache.httpcomponents:httpclient:4.5.3') {
|
|
|
|
exclude(module: 'commons-logging')
|
|
|
|
}
|
|
|
|
compile 'net.sf.jopt-simple:jopt-simple:5.0.3'
|
|
|
|
compile 'org.fxmisc.easybind:easybind:1.0.3'
|
2018-09-05 18:54:18 +02:00
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.2'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.2'
|
2018-09-05 10:52:42 +02:00
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
testCompile 'org.jmockit:jmockit:1.30'
|
2018-09-05 18:54:18 +02:00
|
|
|
testCompileOnly 'org.projectlombok:lombok:1.18.2'
|
|
|
|
testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
|
2018-09-05 10:52:42 +02:00
|
|
|
}
|