ImageTagger/img-ai/build.gradle.kts

28 lines
612 B
Text
Raw Permalink Normal View History

plugins {
2024-03-30 11:08:15 +00:00
id("java")
kotlin("jvm") version "1.8.22"
2024-03-30 11:08:15 +00:00
id("org.javamodularity.moduleplugin") version "1.8.12"
}
2024-04-07 09:08:31 +00:00
var junitVersion = "5.10.0"
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")
2024-04-07 09:08:31 +00:00
testImplementation("org.junit.jupiter:junit-jupiter-api:${junitVersion}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${junitVersion}")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}