forked from electrumj/electrumj
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (29 loc) · 1013 Bytes
/
build.gradle
File metadata and controls
38 lines (29 loc) · 1013 Bytes
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
plugins {
id 'java'
}
group 'org.electrumj'
version '0.1.1'
sourceCompatibility = 1.11
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
javadoc.options.encoding = 'UTF-8'
repositories {
mavenCentral()
maven { url "https://repo.spring.io/libs-release" }
}
dependencies {
ext {
logbackVersion = '1.1.11'
lombokVersion = '1.18.2'
}
testImplementation 'junit:junit:4.12'
testImplementation 'com.google.guava:guava:28.2-android'
implementation 'org.bitcoinj:bitcoinj-core:0.15.8'
implementation 'com.github.briandilley.jsonrpc4j:jsonrpc4j:1.5.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.8.5'
implementation "org.slf4j:slf4j-api:1.7.22"
implementation "ch.qos.logback:logback-core:$logbackVersion"
implementation "ch.qos.logback:logback-classic:$logbackVersion"
compileOnly "org.projectlombok:lombok:$lombokVersion"
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
}