mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 06:47:54 +01:00
17 lines
481 B
Groovy
17 lines
481 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'eclipse'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':bitcoinj-core')
|
|
implementation 'com.google.guava:guava:28.2-android'
|
|
implementation 'net.sf.jopt-simple:jopt-simple:5.0.4'
|
|
implementation 'org.slf4j:slf4j-jdk14:1.7.30'
|
|
implementation 'org.fusesource.leveldbjni:leveldbjni-all:1.8'
|
|
}
|
|
|
|
sourceCompatibility = 1.8
|
|
compileJava.options.encoding = 'UTF-8'
|
|
compileTestJava.options.encoding = 'UTF-8'
|
|
javadoc.options.encoding = 'UTF-8'
|