bitcoinj/integration-test/build.gradle

34 lines
1023 B
Groovy
Raw Normal View History

plugins {
id 'java'
id 'java-library'
}
dependencies {
implementation project(':bitcoinj-core')
implementation project(':bitcoinj-examples')
2024-08-03 09:40:20 +02:00
testImplementation 'org.slf4j:slf4j-jdk14:2.0.13'
2024-08-03 09:52:53 +02:00
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.3"
testImplementation 'junit:junit:4.13.2'
2024-08-03 09:42:48 +02:00
testImplementation 'org.easymock:easymock:5.4.0'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.16.1'
2024-08-03 09:48:39 +02:00
testImplementation 'org.hamcrest:hamcrest-library:3.0'
2024-08-03 09:52:53 +02:00
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.10.3"
}
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*'
}