mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-01-19 05:33:44 +01:00
6ea02d1569
* JUnit 5 (API & Engine) * Tests compile/run as JDK 11+ * Tests require Gradle 4.6+
23 lines
493 B
Groovy
23 lines
493 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'java-library'
|
|
id 'eclipse'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':bitcoinj-core')
|
|
|
|
testImplementation 'org.slf4j:slf4j-jdk14:1.7.36'
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:5.8.2"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.8.2"
|
|
}
|
|
|
|
sourceCompatibility = 11
|
|
compileJava.options.encoding = 'UTF-8'
|
|
compileTestJava.options.encoding = 'UTF-8'
|
|
javadoc.options.encoding = 'UTF-8'
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|