bisq/core/build.gradle

53 lines
1.9 KiB
Groovy
Raw Normal View History

2018-09-05 10:48:22 +02:00
dependencies {
compile project(':assets')
compile project(':p2p')
2018-09-05 10:48:22 +02:00
compile 'net.sf.jopt-simple:jopt-simple:5.0.3'
2018-10-01 19:17:40 +02:00
compile('network.bisq.btcd-cli4j:btcd-cli4j-core:3864e1c4') {
2018-09-05 10:48:22 +02:00
exclude(module: 'slf4j-api')
exclude(module: 'httpclient')
exclude(module: 'commons-lang3')
exclude(module: 'jackson-core')
exclude(module: 'jackson-annotations')
exclude(module: 'jackson-databind')
}
2018-10-01 19:17:40 +02:00
compile('network.bisq.btcd-cli4j:btcd-cli4j-daemon:3864e1c4') {
2018-09-05 10:48:22 +02:00
exclude(module: 'slf4j-api')
exclude(module: 'httpclient')
exclude(module: 'commons-lang3')
exclude(module: 'jackson-core')
exclude(module: 'jackson-annotations')
exclude(module: 'jackson-databind')
}
compile 'com.fasterxml.jackson.core:jackson-core:2.8.10'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.10'
compile('com.fasterxml.jackson.core:jackson-databind:2.8.10') {
exclude(module: 'jackson-annotations')
}
2018-09-05 18:54:18 +02:00
compileOnly 'org.projectlombok:lombok:1.18.2'
annotationProcessor 'org.projectlombok:lombok:1.18.2'
2018-09-13 10:46:07 +02:00
testCompile 'org.jmockit:jmockit:1.42'
2018-09-05 10:48:22 +02:00
testCompile 'junit:junit:4.12'
testCompile('org.mockito:mockito-core:2.21.0') {
2018-09-05 10:48:22 +02:00
exclude(module: 'objenesis')
}
testCompile 'org.powermock:powermock-module-junit4:2.0.0-beta.5'
testCompile 'org.powermock:powermock-api-mockito2:2.0.0-beta.5'
2018-09-13 10:46:07 +02:00
2018-09-05 10:48:22 +02:00
testCompile 'org.springframework:spring-test:4.3.6.RELEASE'
testCompile 'com.natpryce:make-it-easy:4.0.1'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
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:48:22 +02:00
}
test {
2018-09-13 10:46:07 +02:00
systemProperty 'jdk.attach.allowAttachSelf', true
def jmockit = configurations.testCompile.files.find { it.name.contains("jmockit") }.absolutePath
jvmArgs "-javaagent:$jmockit"
}
2018-09-13 10:46:07 +02:00