bitcoinj/integration-test/build.gradle

36 lines
1.0 KiB
Groovy
Raw Normal View History

plugins {
id 'java'
id 'java-library'
id 'eclipse'
}
dependencies {
implementation project(':bitcoinj-core')
implementation project(':bitcoinj-examples')
testImplementation 'org.slf4j:slf4j-jdk14:2.0.7'
2023-07-16 13:05:14 +02:00
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.3"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.3"
testImplementation 'junit:junit:4.13.2'
2023-01-29 21:52:41 +01:00
testImplementation 'org.easymock:easymock:5.1.0'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.15'
testImplementation 'org.hamcrest:hamcrest-library:2.2'
2023-07-16 13:05:14 +02:00
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.3"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.9.3"
}
sourceCompatibility = 11
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
javadoc.options.encoding = 'UTF-8'
compileJava {
options.compilerArgs << '-Xlint:deprecation'
}
test {
useJUnitPlatform()
exclude 'org/bitcoinj/core/PeerTest*'
exclude 'org/bitcoinj/core/TransactionBroadcastTest*'
}