Compare commits
No commits in common. "f76d3c652cb2f924ac345ddf4cd8a3336d52c627" and "8f1aa71d524d0fa47186d55bb91fcb73094c81c6" have entirely different histories.
f76d3c652c
...
8f1aa71d52
@ -6,6 +6,7 @@ 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"
|
||||
@ -19,8 +20,6 @@ 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")
|
||||
@ -31,14 +30,12 @@ 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 {
|
||||
@ -58,4 +55,4 @@ compose.desktop {
|
||||
packageName = "AnalyticsReportGenerator" // 앱 패키지 이름 변경
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user