-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
43 lines (32 loc) · 1017 Bytes
/
build.gradle.kts
File metadata and controls
43 lines (32 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
plugins {
kotlin("jvm") version "2.1.10"
kotlin("plugin.serialization") version "2.1.20"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(kotlin("test"))
//Koin
implementation("io.insert-koin:koin-core:4.0.2")
// coroutines
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2")
// mockk, truth, junit
testImplementation("io.mockk:mockk:1.14.0")
testImplementation("com.google.truth:truth:1.4.4")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.0")
// ktor client
implementation("io.ktor:ktor-client-core:3.1.2")
implementation("io.ktor:ktor-client-cio:3.1.2")
implementation("ch.qos.logback:logback-classic:1.5.18")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.1")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}