bitcoinj/integration-test/build.gradle
2025-01-19 21:31:53 +01:00

33 lines
1,023 B
Groovy

plugins {
id 'java'
id 'java-library'
}
dependencies {
implementation project(':bitcoinj-core')
implementation project(':bitcoinj-examples')
testImplementation 'org.slf4j:slf4j-jdk14:2.0.16'
testImplementation "org.junit.jupiter:junit-jupiter-api:5.11.4"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.11.4"
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.easymock:easymock:5.5.0'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.18.1'
testImplementation 'org.hamcrest:hamcrest-library:3.0'
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.11.4"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.11.4"
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.release = 17
options.compilerArgs << '-Xlint:deprecation'
}
javadoc.options.encoding = 'UTF-8'
test {
useJUnitPlatform()
exclude 'org/bitcoinj/core/PeerTest*'
exclude 'org/bitcoinj/core/TransactionBroadcastTest*'
}