forked from bisq-network/bisq-seednode
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
39 lines (31 loc) · 974 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
34
35
36
37
38
39
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'maven'
apply plugin: 'com.github.johnrengelman.shadow'
group = 'network.bisq'
version = '0.7.1-SNAPSHOT'
sourceCompatibility = 1.8
mainClassName = 'bisq.seednode.SeedNodeMain'
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/master/release/' }
}
dependencies {
compile 'network.bisq:bisq-core:-SNAPSHOT'
runtime 'org.bouncycastle:bcprov-jdk15on:1.56'
compileOnly 'org.projectlombok:lombok:1.16.16'
annotationProcessor 'org.projectlombok:lombok:1.16.16'
}
build.dependsOn installDist
installDist.destinationDir = file('build/app')
distZip.enabled = false