25 lines
383 B
Kotlin
25 lines
383 B
Kotlin
plugins {
|
|
kotlin("jvm") version "2.3.21"
|
|
}
|
|
|
|
group = "com.ericampire.demo.io"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("ai.koog:koog-agents:1.0.0")
|
|
implementation("ai.koog:koog-agents-additions:1.0.0-beta")
|
|
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |