-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
53 lines (41 loc) · 1.56 KB
/
build.gradle.kts
File metadata and controls
53 lines (41 loc) · 1.56 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
import dev.kordex.gradle.plugins.kordex.DataCollection
plugins {
application
alias(libs.plugins.kordEx)
alias(libs.plugins.kordEx.i18n)
alias(libs.plugins.kotlin.serialization)
}
kordEx {
jvmTarget = 21
ignoreIncompatibleKotlinVersion = true
bot {
dataCollection(DataCollection.None)
mainClass = "dev.zt64.minkinator.MainKt"
}
}
i18n {
bundle("minkinator.strings", "dev.zt64.minkinator.i18n")
}
dependencies {
implementation(projects.komapper)
implementation(projects.sstv)
implementation(projects.translate)
implementation(projects.util)
implementation(libs.kord.emoji)
implementation(libs.openai.client)
implementation(libs.logback.classic)
implementation(libs.ktor.client.encoding)
implementation(libs.tess4j)
implementation("org.bytedeco:tesseract:5.5.2-1.5.13")
implementation("org.bytedeco:tesseract-platform:5.5.2-1.5.13")
implementation(libs.bundles.scrimmage)
implementation("org.jetbrains.kotlin:kotlin-scripting-common")
implementation("org.jetbrains.kotlin:kotlin-scripting-jvm")
implementation("org.jetbrains.kotlin:kotlin-scripting-jvm-host")
implementation("org.jetbrains.lets-plot:lets-plot-batik:4.9.0")
implementation("org.jetbrains.lets-plot:lets-plot-common:4.9.0")
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.13.0")
implementation("org.bytedeco:ffmpeg-platform:8.0.1-1.5.13")
implementation("com.twelvemonkeys.imageio:imageio-webp:3.13.1")
implementation("com.twelvemonkeys.imageio:imageio-core:3.13.1")
}