diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-01-17 15:10:36 +0900 |
|---|---|---|
| committer | Sho Sakuma <me@m1sk9.dev> | 2026-01-17 15:10:36 +0900 |
| commit | 5a37ad56989ea3d2fdc163daa9215c90595b326d (patch) | |
| tree | e005e54d7c70cc0c9f905f1ab1278e3205e31332 /engine/build.gradle.kts | |
| parent | b54e0eca7a49f98eb3f4a976d98bf8b3f8a40dd5 (diff) | |
| download | LunaticChat-5a37ad56989ea3d2fdc163daa9215c90595b326d.tar.gz LunaticChat-5a37ad56989ea3d2fdc163daa9215c90595b326d.tar.bz2 LunaticChat-5a37ad56989ea3d2fdc163daa9215c90595b326d.zip | |
refactor: Move modules without dependencies to the engine
Diffstat (limited to 'engine/build.gradle.kts')
| -rw-r--r-- | engine/build.gradle.kts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/engine/build.gradle.kts b/engine/build.gradle.kts index 60c5c7b..9af6eb8 100644 --- a/engine/build.gradle.kts +++ b/engine/build.gradle.kts @@ -3,4 +3,10 @@ plugins { kotlin("plugin.serialization") } -dependencies {} +dependencies { + implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0") + implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2") + implementation("io.ktor:ktor-client-core:3.3.3") + implementation("io.ktor:ktor-client-cio:3.3.3") + compileOnly("net.kyori:adventure-api:4.18.0") +} |
