mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 01:40:26 +01:00
build.gradle: Use plugins block rather than 'apply plugin' statements.
This commit is contained in:
parent
bfeb808b3b
commit
7bfeff65f6
@ -1,7 +1,9 @@
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'com.google.protobuf'
|
||||
apply plugin: 'maven'
|
||||
apply plugin: 'eclipse'
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'com.google.protobuf'
|
||||
id 'maven'
|
||||
id 'eclipse'
|
||||
}
|
||||
|
||||
version = '0.16-SNAPSHOT'
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'eclipse'
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'eclipse'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':bitcoinj-core')
|
||||
|
@ -1,5 +1,7 @@
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'eclipse'
|
||||
plugins {
|
||||
id 'java'
|
||||
id 'eclipse'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':bitcoinj-core')
|
||||
|
@ -1,12 +1,10 @@
|
||||
plugins {
|
||||
id 'org.openjfx.javafxplugin' version '0.0.7' apply false
|
||||
id 'java'
|
||||
id 'eclipse'
|
||||
id 'application'
|
||||
id 'org.openjfx.javafxplugin' version '0.0.7'
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'eclipse'
|
||||
apply plugin: 'application'
|
||||
apply plugin: 'org.openjfx.javafxplugin'
|
||||
|
||||
dependencies {
|
||||
implementation project(':bitcoinj-core')
|
||||
implementation 'com.google.guava:guava:27.1-android'
|
||||
|
Loading…
Reference in New Issue
Block a user