-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
31 lines (24 loc) · 860 Bytes
/
build.gradle.kts
File metadata and controls
31 lines (24 loc) · 860 Bytes
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
plugins {
kotlin("jvm") version "2.0.10"
}
group = "community.flock"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/") }
}
val aigenticVersion = "0.0.7-SNAPSHOT"
dependencies {
testImplementation(kotlin("test"))
implementation("community.flock.aigentic:core:$aigenticVersion")
// Also available: community.flock.aigentic:gemini or community.flock.aigentic:ollama
implementation("community.flock.aigentic:openai:$aigenticVersion")
// Add the ktor client library depending on your platform. CIO is for JVM, Android, Native. For other platforms pick the correct engine: https://ktor.io/docs/client-engines.html#platforms
implementation("io.ktor:ktor-client-cio:2.3.10")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}