mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-01-14 12:14:46 +00:00
20 lines
309 B
Groovy
20 lines
309 B
Groovy
plugins {
|
|
id "application"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
|
|
def junitVersion = "5.9.1"
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:${junitVersion}")
|
|
testImplementation("org.junit.jupiter:junit-jupiter-params:${junitVersion}")
|
|
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |