..
This commit is contained in:
parent
ee8a5cb949
commit
f76d3c652c
@ -6,7 +6,6 @@ plugins {
|
||||
kotlin("jvm") version "2.0.0"
|
||||
id("org.jetbrains.compose") version "1.8.0"
|
||||
kotlin("plugin.serialization") version "2.0.0"
|
||||
// ⬇️ 이 줄을 추가해 주세요!
|
||||
id("org.jetbrains.kotlin.plugin.compose") version "2.0.0"
|
||||
}
|
||||
group = "com.example"
|
||||
@ -20,6 +19,8 @@ repositories {
|
||||
|
||||
dependencies {
|
||||
implementation(compose.desktop.currentOs)
|
||||
implementation(compose.desktop.windows_x64)
|
||||
implementation(compose.desktop.macos_x64)
|
||||
implementation(compose.materialIconsExtended)
|
||||
// JWT 라이브러리
|
||||
implementation("io.jsonwebtoken:jjwt-api:0.11.5")
|
||||
@ -30,12 +31,14 @@ dependencies {
|
||||
implementation("io.ktor:ktor-client-core:2.3.11")
|
||||
implementation("io.ktor:ktor-client-cio:2.3.11")
|
||||
implementation("io.ktor:ktor-client-logging:2.3.11")
|
||||
// ⬇️ Ktor가 JSON을 처리할 수 있도록 도와주는 라이브러리 추가
|
||||
implementation("io.ktor:ktor-client-content-negotiation:2.3.11")
|
||||
implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.11")
|
||||
|
||||
// ⬇️ Kotlinx Serialization 라이브러리 추가
|
||||
// Kotlinx Serialization 라이브러리
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.0")
|
||||
|
||||
// ⬇️ SLF4J 로거 경고 해결을 위해 이 줄을 추가해 주세요!
|
||||
implementation("org.slf4j:slf4j-simple:2.0.13")
|
||||
}
|
||||
|
||||
kotlin {
|
||||
@ -55,4 +58,4 @@ compose.desktop {
|
||||
packageName = "AnalyticsReportGenerator" // 앱 패키지 이름 변경
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user