-
Notifications
You must be signed in to change notification settings - Fork 3
/
libs.versions.toml
36 lines (29 loc) · 1.14 KB
/
libs.versions.toml
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
[versions]
commonsCodec = "1.17.1"
dokkaPlugin = "1.9.20"
kotest = "5.9.1"
kotlin = "2.0.21"
ktlintPlugin = "12.1.1"
kotlinxCoroutines = "1.9.0"
mockk = "1.13.13"
[bundles]
kotest = [
"kotest-property",
"kotest-frameworkDatatest"
]
[libraries]
# kotlin
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
kotlinx-coroutinesCore = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinxCoroutines" }
# Kotest
kotest-runnerJUnit5 = { module = "io.kotest:kotest-runner-junit5", version.ref = "kotest" }
kotest-property = { module = "io.kotest:kotest-property", version.ref = "kotest" }
kotest-frameworkDatatest = { module = "io.kotest:kotest-framework-datatest", version.ref = "kotest" }
# mockk
mockk = { module = "io.mockk:mockk", version.ref = "mockk" }
# Commons codecs
commonsCodecs = { module = "commons-codec:commons-codec", version.ref = "commonsCodec" }
[plugins]
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
ktlint = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlintPlugin" }
dokka = { id = "org.jetbrains.dokka", version.ref = "dokkaPlugin" }