fix junit test runner
This commit is contained in:
parent
7bddf2fdbc
commit
77a1c5e70e
1 changed files with 3 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue