30 lines
603 B
Groovy
30 lines
603 B
Groovy
plugins {
|
|
id "application"
|
|
id "java-test-fixtures"
|
|
id "me.champeau.jmh" version "0.6.8"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = 11
|
|
targetCompatibility = 11
|
|
}
|
|
|
|
dependencies {
|
|
|
|
def junitVersion = "5.9.1"
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:${junitVersion}")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-params:${junitVersion}")
|
|
|
|
testFixturesImplementation("org.apache.tuweni:tuweni-units:2.3.1")
|
|
testFixturesImplementation("com.fasterxml.jackson.core:jackson-databind:2.14.1")
|
|
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |