22 lines
353 B
Text
22 lines
353 B
Text
|
plugins {
|
||
|
kotlin("jvm") version "1.8.22"
|
||
|
}
|
||
|
|
||
|
group = "dev.nuculabs.imagetagger.ai"
|
||
|
version = "1.1"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation("com.microsoft.onnxruntime:onnxruntime:1.17.1")
|
||
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
kotlin {
|
||
|
jvmToolchain(17)
|
||
|
}
|