fix junit test runner

This commit is contained in:
Denis-Cosmin NUTIU 2024-04-07 12:08:31 +03:00
parent 7bddf2fdbc
commit 77a1c5e70e

View file

@ -5,6 +5,7 @@ plugins {
}
var junitVersion = "5.10.0"
group = "dev.nuculabs.imagetagger.ai"
version = "1.1"
@ -15,6 +16,8 @@ repositories {
dependencies {
implementation("com.microsoft.onnxruntime:onnxruntime:1.17.1")
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
}
tasks.test {