-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
54 lines (43 loc) · 1.68 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
54 lines (43 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
val kotlin_version: String by project
val logback_version: String by project
val koog_agents_version: String by project
val koog_beta_version: String by project
val dotenv_kotlin_version: String by project
val ktor_version: String by project
plugins {
kotlin("jvm") version "2.3.0"
kotlin("plugin.serialization") version "2.3.0"
id("io.ktor.plugin") version "3.1.3"
}
group = "io.github.maikotrindade"
version = "0.0.1"
application {
mainClass = "io.ktor.server.netty.EngineMain"
}
repositories {
mavenCentral()
}
kotlin {
jvmToolchain(21)
}
dependencies {
implementation("io.ktor:ktor-server-core:3.1.3")
implementation("io.ktor:ktor-server-call-logging:3.1.3")
implementation("io.ktor:ktor-server-netty:3.1.3")
implementation("io.ktor:ktor-server-config-yaml:3.1.3")
implementation("io.ktor:ktor-server-content-negotiation:3.1.3")
implementation("io.ktor:ktor-serialization-kotlinx-json:3.1.3")
implementation("ch.qos.logback:logback-classic:${logback_version}")
implementation("ai.koog:koog-agents:$koog_agents_version")
implementation("ai.koog:prompt-executor-llms-all:$koog_beta_version")
implementation("ai.koog:prompt-executor-google-client:$koog_beta_version")
implementation("ai.koog:prompt-executor-deepseek-client:$koog_beta_version")
implementation("ai.koog:prompt-executor-openrouter-client:$koog_beta_version")
implementation("io.github.cdimascio:dotenv-kotlin:$dotenv_kotlin_version")
testImplementation(kotlin("test"))
testImplementation("io.ktor:ktor-server-test-host:$ktor_version")
testImplementation("io.ktor:ktor-client-content-negotiation:$ktor_version")
}
tasks.test {
useJUnitPlatform()
}