-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathlibs.versions.toml
68 lines (66 loc) · 4.21 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[versions]
compose = "1.6.5"
compose-compiler = "1.5.8"
compose-plugin = "1.7.3"
junit = "4.13.2"
kotlin = "2.1.0"
apksig = "8.7.2"
tools = "31.6.0"
slf4j = "2.0.16"
buildconfig = "5.5.0"
commons-codec = "1.17.1"
asm = "9.7.1"
jna = "5.15.0"
logging = "7.0.0"
lifecycle = "2.8.4"
coroutines = "1.9.0"
filekit = "0.8.8"
multiplatform-settings = "1.3.0"
kotlinx-serialization-json = "1.7.3"
apkparser = "31.7.2"
[libraries]
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }
kotlin-test-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "compose" }
compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "compose" }
compose-material = { module = "androidx.compose.material:material", version.ref = "compose" }
compose-material3 = { module = "androidx.compose.material3:material3", version.ref = "compose" }
compose-material-icons-extended-desktop = { module = "androidx.compose.material:material-icons-extended-desktop", version.ref = "compose" }
# https://mvnrepository.com/artifact/org.jetbrains.androidx.lifecycle/lifecycle-viewmodel-compose
lifecycle-viewmodel-compose = { module = "org.jetbrains.androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "lifecycle" }
# https://mvnrepository.com/artifact/com.android.tools.build/apksig
android-apksig = { module = "com.android.tools.build:apksig", version.ref = "apksig" }
# https://mvnrepository.com/artifact/com.android.tools/sdk-common
android-tools-sdk-common = { module = "com.android.tools:sdk-common", version.ref = "tools" }
# https://mvnrepository.com/artifact/org.slf4j/slf4j-api
slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
slf4j-simple = { module = "org.slf4j:slf4j-simple", version.ref = "slf4j" }
# https://mvnrepository.com/artifact/commons-codec/commons-codec
commons-codec = { module = "commons-codec:commons-codec", version.ref = "commons-codec" }
# https://mvnrepository.com/artifact/org.ow2.asm/asm
asm = { module = "org.ow2.asm:asm", version.ref = "asm" }
# https://mvnrepository.com/artifact/net.java.dev.jna/jna
jna = { module = "net.java.dev.jna:jna", version.ref = "jna" }
logging = { module = "io.github.oshai:kotlin-logging-jvm", version.ref = "logging" }
# https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-swing
kotlinx-coroutines-swing = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-swing", version.ref = "coroutines" }
# https://github.com/vinceglb/FileKit
filekit-core = { module = "io.github.vinceglb:filekit-core", version.ref = "filekit" }
filekit-compose = { module = "io.github.vinceglb:filekit-compose", version.ref = "filekit" }
# https://github.com/russhwolf/multiplatform-settings
multiplatform-settings = { module = "com.russhwolf:multiplatform-settings", version.ref = "multiplatform-settings" }
multiplatform-settings-coroutines = { module = "com.russhwolf:multiplatform-settings-coroutines", version.ref = "multiplatform-settings" }
multiplatform-settings-serialization = { module = "com.russhwolf:multiplatform-settings-serialization", version.ref = "multiplatform-settings" }
# https://github.com/Kotlin/kotlinx.serialization
kotlinx-serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "kotlinx-serialization-json" }
# https://mvnrepository.com/artifact/com.android.tools.apkparser/binary-resources
binary-resources = { module = "com.android.tools.apkparser:binary-resources", version.ref = "apkparser" }
[plugins]
jetbrainsCompose = { id = "org.jetbrains.compose", version.ref = "compose-plugin" }
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
githubBuildconfig = { id = "com.github.gmazzo.buildconfig", version.ref = "buildconfig" }
kotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }