c-kzg-4844/bindings/java/build.gradle

20 lines
309 B
Groovy
Raw Normal View History

2022-11-24 17:16:15 +00:00
plugins {
id "application"
}
repositories {
mavenCentral()
}
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-11-24 17:16:15 +00:00
}
test {
useJUnitPlatform()
}