3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-13 10:45:51 +00:00
altcoinj/examples/build.gradle

17 lines
485 B
Groovy
Raw Normal View History

apply plugin: 'java'
apply plugin: 'eclipse'
eclipse.project.name = 'bitcoinj-examples'
dependencies {
implementation project(':core')
2019-02-14 23:20:55 +01:00
implementation 'com.google.guava:guava:27.0.1-android'
2019-02-14 23:42:10 +01:00
implementation 'net.sf.jopt-simple:jopt-simple:5.0.4'
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'