2022-11-24 17:16:15 +00:00
|
|
|
plugins {
|
|
|
|
id "application"
|
2022-12-06 12:58:56 +00:00
|
|
|
id "java-test-fixtures"
|
|
|
|
id "me.champeau.jmh" version "0.6.8"
|
2022-11-24 17:16:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
2022-12-10 19:06:11 +00:00
|
|
|
java {
|
|
|
|
sourceCompatibility = 11
|
|
|
|
targetCompatibility = 11
|
|
|
|
}
|
|
|
|
|
2022-11-24 17:16:15 +00:00
|
|
|
dependencies {
|
2022-11-25 14:51:12 +00:00
|
|
|
|
|
|
|
def junitVersion = "5.9.1"
|
|
|
|
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:${junitVersion}")
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter-params:${junitVersion}")
|
|
|
|
|
2022-12-06 12:58:56 +00:00
|
|
|
testFixturesImplementation("org.apache.tuweni:tuweni-units:2.3.1")
|
2022-12-15 07:38:41 +00:00
|
|
|
testFixturesImplementation("com.fasterxml.jackson.core:jackson-databind:2.14.1")
|
2022-12-06 12:58:56 +00:00
|
|
|
|
2022-11-24 17:16:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|