mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-13 18:55:52 +00:00
14 lines
413 B
Groovy
14 lines
413 B
Groovy
apply plugin: 'java'
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation 'com.google.guava:guava:25.1-android'
|
|
implementation 'net.sf.jopt-simple:jopt-simple:4.3'
|
|
implementation 'org.slf4j:slf4j-jdk14:1.7.25'
|
|
implementation 'org.fusesource.leveldbjni:leveldbjni-all:1.8'
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
compileJava.options.encoding = 'UTF-8'
|
|
compileTestJava.options.encoding = 'UTF-8'
|