mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-11 17:58:01 +01:00
Use the Gradle java-library plugin to make Guava an `api` dependency since Guava types are used in the bitcoinj public API. This allows us to remove explicit dependencies on Guava in the other modules.
24 lines
573 B
Groovy
24 lines
573 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'eclipse'
|
|
id 'application'
|
|
id 'org.openjfx.javafxplugin' version '0.0.7'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':bitcoinj-core')
|
|
implementation 'de.jensd:fontawesomefx:8.0.0'
|
|
implementation 'com.google.zxing:core:3.3.3'
|
|
implementation 'org.slf4j:slf4j-jdk14:1.7.30'
|
|
}
|
|
|
|
javafx {
|
|
modules = [ 'javafx.controls', 'javafx.fxml' ]
|
|
}
|
|
|
|
sourceCompatibility = 1.11
|
|
compileJava.options.encoding = 'UTF-8'
|
|
compileTestJava.options.encoding = 'UTF-8'
|
|
javadoc.options.encoding = 'UTF-8'
|
|
|
|
mainClassName = 'wallettemplate.Main'
|