2022-04-12 02:18:28 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'java-library'
|
|
|
|
id 'eclipse'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':bitcoinj-core')
|
2022-07-29 04:24:02 +02:00
|
|
|
implementation project(':bitcoinj-examples')
|
2022-04-12 02:18:28 +02:00
|
|
|
|
2023-03-27 15:25:02 +02:00
|
|
|
testImplementation 'org.slf4j:slf4j-jdk14:2.0.7'
|
2023-07-25 18:12:54 +02:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0"
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.0"
|
2022-04-30 23:12:33 +02:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2023-01-29 21:52:41 +01:00
|
|
|
testImplementation 'org.easymock:easymock:5.1.0'
|
2023-07-16 12:43:31 +02:00
|
|
|
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.15'
|
2022-04-30 23:12:33 +02:00
|
|
|
testImplementation 'org.hamcrest:hamcrest-library:2.2'
|
2023-07-25 18:12:54 +02:00
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.0"
|
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.10.0"
|
2022-04-12 02:18:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = 11
|
|
|
|
compileJava.options.encoding = 'UTF-8'
|
|
|
|
compileTestJava.options.encoding = 'UTF-8'
|
|
|
|
javadoc.options.encoding = 'UTF-8'
|
|
|
|
|
2022-04-18 19:42:38 +02:00
|
|
|
compileJava {
|
|
|
|
options.compilerArgs << '-Xlint:deprecation'
|
|
|
|
}
|
|
|
|
|
2022-04-12 02:18:28 +02:00
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
2022-05-24 23:35:59 +02:00
|
|
|
exclude 'org/bitcoinj/core/PeerTest*'
|
|
|
|
exclude 'org/bitcoinj/core/TransactionBroadcastTest*'
|
2022-04-12 02:18:28 +02:00
|
|
|
}
|