c-kzg-4844/bindings/java/build.gradle
Justin Traglia 410eed4db6
Update java bindings to support YAML ref tests (#166)
* Update java bindings to support YAML ref tests

* Clean things up a little

* Fix some more nits

* Swap comparision to be expected/actual

* Add missing input length checks

* Move test formats to new directory
2023-03-06 15:58:49 +02:00

37 lines
806 B
Groovy

plugins {
id "application"
id "java-test-fixtures"
id "me.champeau.jmh" version "0.6.8"
id "com.diffplug.spotless" version "6.15.0"
}
repositories {
mavenCentral()
}
java {
sourceCompatibility = 11
targetCompatibility = 11
}
dependencies {
def junitVersion = "5.9.2"
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.2")
testFixturesImplementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.14.2")
}
spotless {
java {
googleJavaFormat()
}
}
test {
useJUnitPlatform()
}