mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
1cdb39ab60
Not all subprojects need it, but most do.
18 lines
669 B
Groovy
18 lines
669 B
Groovy
dependencies {
|
|
compile project(':common')
|
|
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'
|
|
compileOnly 'org.projectlombok:lombok:1.18.2'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.2'
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'org.jmockit:jmockit:1.30'
|
|
testCompileOnly 'org.projectlombok:lombok:1.18.2'
|
|
testAnnotationProcessor 'org.projectlombok:lombok:1.18.2'
|
|
}
|