From 15131fefd107d3ba2bf4c0356899322c36a8944a Mon Sep 17 00:00:00 2001 From: hstyi Date: Sat, 14 Jun 2025 16:47:30 +0800 Subject: [PATCH] chore: kotlin reflect --- THIRDPARTY | 4 ++++ build.gradle.kts | 2 ++ 2 files changed, 6 insertions(+) diff --git a/THIRDPARTY b/THIRDPARTY index b8f932a..b2c955b 100644 --- a/THIRDPARTY +++ b/THIRDPARTY @@ -118,6 +118,10 @@ kotlin-stdlib Apache License 2.0 https://github.com/JetBrains/kotlin/blob/master/license/LICENSE.txt +kotlin-reflect +Apache License 2.0 +https://github.com/JetBrains/kotlin/blob/master/license/LICENSE.txt + kotlin-stdlib-jdk7 Apache License 2.0 https://github.com/JetBrains/kotlin/blob/master/license/LICENSE.txt diff --git a/build.gradle.kts b/build.gradle.kts index fab2d45..9f6d404 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -63,6 +63,8 @@ dependencies { // implementation(platform(libs.koin.bom)) // implementation(libs.koin.core) + + api(kotlin("reflect")) api(libs.slf4j.api) api(libs.pty4j) api(libs.slf4j.tinylog)