From 7b89016359533a94eb8b1b37f733c49323519294 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Mon, 19 Feb 2024 02:26:20 -0500 Subject: [PATCH] [F] Fix runtime dependency issue --- build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 60fae0c0..daf4da72 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -61,6 +61,10 @@ dependencies { implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.8") implementation("org.jetbrains.kotlin:kotlin-reflect:1.9.22") + // Somehow these are needed for ktor even though they're not in the documentation + runtimeOnly("org.reactivestreams:reactive-streams:1.0.4") + runtimeOnly("org.jetbrains.kotlinx:kotlinx-coroutines-reactor:1.8.0") + // Email implementation("org.simplejavamail:simple-java-mail:8.6.3") implementation("org.simplejavamail:spring-module:8.6.3")