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