bisq/build.gradle
2018-03-21 06:14:48 +01:00

50 lines
1.5 KiB
Groovy

plugins {
id 'java'
id 'application'
id 'maven'
id 'com.github.johnrengelman.shadow' version '2.0.2'
}
group = 'network.bisq'
version = '-SNAPSHOT'
sourceCompatibility = 1.8
mainClassName = 'bisq.desktop.app.BisqAppMain'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
sourceSets.main.resources.srcDirs += ['src/main/java'] // to copy fxml and css files
repositories {
jcenter()
maven { url 'https://jitpack.io' }
maven { url 'https://raw.githubusercontent.com/JesusMcCloud/tor-binary/testrelease/release/' }
}
dependencies {
compile 'network.bisq:bisq-core:-SNAPSHOT'
compile 'org.controlsfx:controlsfx:8.0.6_20'
compile 'org.reactfx:reactfx:2.0-M3'
compile 'net.glxn:qrgen:1.3'
compile 'de.jensd:fontawesomefx:8.0.0'
compile 'com.googlecode.jcsv:jcsv:1.4.0'
compile 'org.bouncycastle:bcprov-jdk15on:1.56'
compile 'org.bouncycastle:bcpg-jdk15on:1.56'
compile 'org.bouncycastle:bcpg-jdk16:1.46'
compileOnly 'org.projectlombok:lombok:1.16.16'
annotationProcessor 'org.projectlombok:lombok:1.16.16'
testCompile('org.mockito:mockito-core:2.8.9') {
exclude(module: 'objenesis')
}
testCompile 'org.jmockit:jmockit:1.30'
testCompile 'org.powermock:powermock-module-junit4:1.7.1'
testCompile 'org.powermock:powermock-api-mockito2:1.7.1'
testCompile 'org.springframework:spring-test:4.3.6.RELEASE'
testCompile 'com.natpryce:make-it-easy:4.0.1'
testCompileOnly 'org.projectlombok:lombok:1.16.16'
testAnnotationProcessor 'org.projectlombok:lombok:1.16.16'
}