forked from bisq-network/bisq-p2p
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
33 lines (29 loc) · 971 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
plugins {
id 'java'
id 'maven'
}
group = 'network.bisq'
version = '-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
jcenter()
maven { url 'https://jitpack.io' }
maven { url 'https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/' }
}
dependencies {
compile 'network.bisq:bisq-common:-SNAPSHOT'
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.16.16'
annotationProcessor 'org.projectlombok:lombok:1.16.16'
testCompile 'junit:junit:4.12'
testCompile 'org.jmockit:jmockit:1.30'
testCompileOnly 'org.projectlombok:lombok:1.16.16'
testAnnotationProcessor 'org.projectlombok:lombok:1.16.16'
}