fix(deps): update kotlin (#4774)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.devtools.ksp](https://goo.gle/ksp) ([source](https://redirect.github.com/google/ksp)) | `2.0.21-1.0.28` -> `2.1.0-1.0.29` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | org.jetbrains.kotlin.plugin.parcelize | `2.0.21` -> `2.1.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | org.jetbrains.kotlin.android | `2.0.21` -> `2.1.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [org.jetbrains.kotlinx:kotlinx-coroutines-test](https://redirect.github.com/Kotlin/kotlinx.coroutines) | `1.9.0` -> `1.10.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [org.jetbrains.kotlinx:kotlinx-coroutines-android](https://redirect.github.com/Kotlin/kotlinx.coroutines) | `1.9.0` -> `1.10.1` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>google/ksp (com.google.devtools.ksp)</summary> ### [`v2.1.0-1.0.29`](https://redirect.github.com/google/ksp/releases/tag/2.1.0-1.0.29) [Compare Source](https://redirect.github.com/google/ksp/compare/2.1.0-1.0.28...2.1.0-1.0.29) ##### Updates - KSP2: Sanitize dots to underscores in suffixes of internals by [@​ting-yuan](https://redirect.github.com/ting-yuan) in [https://github.com/google/ksp/pull/2229](https://redirect.github.com/google/ksp/pull/2229) - KSP2: clean up legacy incremental code by [@​ting-yuan](https://redirect.github.com/ting-yuan) in [https://github.com/google/ksp/pull/2231](https://redirect.github.com/google/ksp/pull/2231) ##### Contributors Thanks to everyone who reported bugs and participated in discussions! ### [`v2.1.0-1.0.28`](https://redirect.github.com/google/ksp/releases/tag/2.1.0-1.0.28) [Compare Source](https://redirect.github.com/google/ksp/compare/2.0.21-1.0.28...2.1.0-1.0.28) ##### What's Changed - Bump Kotlin to 2.1.0 by [@​mkmuir0](https://redirect.github.com/mkmuir0) in [https://github.com/google/ksp/pull/2235](https://redirect.github.com/google/ksp/pull/2235) - Update intellij to 233.13135.128 by [@​ting-yuan](https://redirect.github.com/ting-yuan) in [https://github.com/google/ksp/pull/2238](https://redirect.github.com/google/ksp/pull/2238) **Full Changelog**: https://github.com/google/ksp/compare/2.1.0-RC2-1.0.28...2.1.0-1.0.28 </details> <details> <summary>Kotlin/kotlinx.coroutines (org.jetbrains.kotlinx:kotlinx-coroutines-test)</summary> ### [`v1.10.1`](https://redirect.github.com/Kotlin/kotlinx.coroutines/blob/HEAD/CHANGES.md#Version-1101) [Compare Source](https://redirect.github.com/Kotlin/kotlinx.coroutines/compare/1.10.0...1.10.1) - Fixed binary incompatibility introduced for non-JVM targets in [#​4261](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4261) ([#​4309](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4309)). ### [`v1.10.0`](https://redirect.github.com/Kotlin/kotlinx.coroutines/blob/HEAD/CHANGES.md#Version-1100) [Compare Source](https://redirect.github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.0) - Kotlin was updated to 2.1.0 ([#​4284](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4284)). - Introduced `Flow.any`, `Flow.all`, and `Flow.none` ([#​4212](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4212)). Thanks, [@​CLOVIS-AI](https://redirect.github.com/CLOVIS-AI)! - Reorganized `kotlinx-coroutines-debug` and `kotlinx-coroutines-core` code to avoid a split package between the two artifacts ([#​4247](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4247)). Note that directly referencing `kotlinx.coroutines.debug.AgentPremain` must now be replaced with `kotlinx.coroutines.debug.internal.AgentPremain`. Thanks, [@​sellmair](https://redirect.github.com/sellmair)! - No longer shade byte-buddy in `kotlinx-coroutines-debug`, reducing the artifact size and simplifying the build configuration of client code. Thanks, [@​sellmair](https://redirect.github.com/sellmair)! - Fixed `NullPointerException` when using Java-deserialized `kotlinx-coroutines-core` exceptions ([#​4291](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4291)). Thanks, [@​AlexRiedler](https://redirect.github.com/AlexRiedler)! - Properly report exceptions thrown by `CoroutineDispatcher.dispatch` instead of raising internal errors ([#​4091](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4091)). Thanks, [@​zuevmaxim](https://redirect.github.com/zuevmaxim)! - Fixed a bug that delayed scheduling of a `Dispatchers.Default` or `Dispatchers.IO` task after a `yield()` in rare scenarios ([#​4248](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4248)). - Fixed a bug that prevented the `main()` coroutine on Wasm/WASI from executing after a `delay()` call in some scenarios ([#​4239](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4239)). - Fixed scheduling of `runBlocking` tasks on Kotlin/Native that arrive after the `runBlocking` block was exited ([#​4245](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4245)). - Fixed some terminal `Flow` operators sometimes resuming without taking cancellation into account ([#​4254](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4254)). Thanks, [@​jxdabc](https://redirect.github.com/jxdabc)! - Fixed a bug on the JVM that caused coroutine-bound `ThreadLocal` values not to get cleaned when using non-`CoroutineDispatcher` continuation interceptors ([#​4296](https://redirect.github.com/Kotlin/kotlinx.coroutines/issues/4296)). - Small tweaks, fixes, and documentation improvements. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/tuskyapp/Tusky). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOS4wIiwidXBkYXRlZEluVmVyIjoiMzkuOTIuMCIsInRhcmdldEJyYW5jaCI6ImRldmVsb3AiLCJsYWJlbHMiOltdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Conny Duck <git@connyduck.at> Co-authored-by: Konrad Pozniak <connyduck@users.noreply.github.com>
This commit is contained in:
parent
9cf658a359
commit
ccd9fe9534
7 changed files with 369 additions and 7 deletions
|
|
@ -71,6 +71,12 @@
|
|||
<issue id="Recycle" severity="error" />
|
||||
<issue id="KeyboardInaccessibleWidget" severity="error" />
|
||||
|
||||
<!-- these three don't work with Kotlin 2.1 for some reason
|
||||
https://github.com/tuskyapp/Tusky/pull/4774 -->
|
||||
<issue id="StateFlowValueCalledInComposition" severity="ignore" />
|
||||
<issue id="CoroutineCreationDuringComposition" severity="ignore" />
|
||||
<issue id="FlowOperatorInvokedInComposition" severity="ignore" />
|
||||
|
||||
<!-- Mark all other lint issues as warnings -->
|
||||
<issue id="all" severity="warning" />
|
||||
</lint>
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class ComposeTokenizerTest(
|
|||
companion object {
|
||||
@Parameterized.Parameters(name = "{0}")
|
||||
@JvmStatic
|
||||
fun data(): Iterable<Any> {
|
||||
fun data(): Iterable<Array<Any>> {
|
||||
return listOf(
|
||||
arrayOf("@mention", 0, 8),
|
||||
arrayOf("@ment10n", 0, 8),
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class StatusLengthTest(
|
|||
companion object {
|
||||
@ParameterizedRobolectricTestRunner.Parameters(name = "{0}")
|
||||
@JvmStatic
|
||||
fun data(): Iterable<Any> {
|
||||
fun data(): Iterable<Array<Any>> {
|
||||
return listOf(
|
||||
arrayOf("", 0),
|
||||
arrayOf(" ", 1),
|
||||
|
|
|
|||
|
|
@ -403,7 +403,7 @@ class LinkHelperTest {
|
|||
companion object {
|
||||
@Parameterized.Parameters(name = "match_{0}")
|
||||
@JvmStatic
|
||||
fun data(): Iterable<Any> {
|
||||
fun data(): Iterable<Array<Any>> {
|
||||
return listOf(
|
||||
arrayOf("https://mastodon.foo.bar/@User", true),
|
||||
arrayOf("http://mastodon.foo.bar/@abc123", true),
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ class NumberUtilsTest(private val input: Long, private val want: String) {
|
|||
|
||||
@Parameterized.Parameters(name = "formatNumber_{0}")
|
||||
@JvmStatic
|
||||
fun data(): Iterable<Any> {
|
||||
fun data(): Iterable<Array<Any>> {
|
||||
return listOf(
|
||||
arrayOf(0, "0"),
|
||||
arrayOf(1, "1"),
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ androidx-work = "2.9.1"
|
|||
androidx-room = "2.6.1"
|
||||
bouncycastle = "1.70"
|
||||
conscrypt = "2.5.3"
|
||||
coroutines = "1.9.0"
|
||||
coroutines = "1.10.1"
|
||||
diffx = "1.1.1"
|
||||
emoji2 = "1.4.0"
|
||||
filemoji-compat = "3.2.7"
|
||||
|
|
@ -33,7 +33,7 @@ glide = "4.16.0"
|
|||
# Deliberate downgrade, https://github.com/tuskyapp/Tusky/issues/3631
|
||||
glide-animation-plugin = "3.0.2"
|
||||
hilt = "2.55"
|
||||
kotlin = "2.0.21"
|
||||
kotlin = "2.1.0"
|
||||
image-cropper = "4.3.2"
|
||||
material = "1.12.0"
|
||||
material-drawer = "9.0.2"
|
||||
|
|
@ -54,7 +54,7 @@ xmlwriter = "1.0.4"
|
|||
|
||||
[plugins]
|
||||
android-application = { id = "com.android.application", version.ref = "agp" }
|
||||
google-ksp = "com.google.devtools.ksp:2.0.21-1.0.28"
|
||||
google-ksp = "com.google.devtools.ksp:2.1.0-1.0.29"
|
||||
hilt-android = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
|
||||
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
||||
kotlin-parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" }
|
||||
|
|
|
|||
|
|
@ -9959,6 +9959,11 @@
|
|||
<sha256 value="586a5c4a648e5c2bcafc4e1cb1a7c135a0fe8959ef4a91f14115c77b6a7062b6" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="com.google.devtools.ksp.gradle.plugin" version="2.1.0-1.0.29">
|
||||
<artifact name="com.google.devtools.ksp.gradle.plugin-2.1.0-1.0.29.pom">
|
||||
<sha256 value="054d154158279087960a76d2c03c54ce9206a32c644756d001c1d4489695cc27" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="symbol-processing" version="2.0.0-1.0.22">
|
||||
<artifact name="symbol-processing-2.0.0-1.0.22.jar">
|
||||
<sha256 value="84f37b2e285cde853e1d9cf1307766641b8bf9e411e264d736d4381e97e1316d" origin="Generated by Gradle"/>
|
||||
|
|
@ -10039,6 +10044,14 @@
|
|||
<sha256 value="d3aa0a259210c4374f9280dac2229173afba0e2a78196f6e4ddd4a3d46507ae8" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="symbol-processing" version="2.1.0-1.0.29">
|
||||
<artifact name="symbol-processing-2.1.0-1.0.29.jar">
|
||||
<sha256 value="7150a9ccf4e6d7276802364be35d6a29c2abbac6477e79ae19ef0e5b61a8d27a" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="symbol-processing-2.1.0-1.0.29.pom">
|
||||
<sha256 value="50d0a8f7c267afeccc6ac40080a34f151b788b91450302ad2c370038f30ef686" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="symbol-processing-api" version="1.9.0-1.0.13">
|
||||
<artifact name="symbol-processing-api-1.9.0-1.0.13.module">
|
||||
<sha256 value="7bf557c8c69d638cd03eee46df4e0e2a9c6b26851383fa581c541dfd2eabfe1a" origin="Generated by Gradle"/>
|
||||
|
|
@ -10145,6 +10158,14 @@
|
|||
<sha256 value="8324a417e092ca2728732edb8281ee91ad0861c1c6c694a4dd2e9d4e79f4e270" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="symbol-processing-api" version="2.1.0-1.0.29">
|
||||
<artifact name="symbol-processing-api-2.1.0-1.0.29.jar">
|
||||
<sha256 value="35e126d0af791641dfbcb5102eed3744bc1f5b38ce70d6a7046e8f5bba6b998d" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="symbol-processing-api-2.1.0-1.0.29.module">
|
||||
<sha256 value="a7eec572ac92f0a607a54f6ebced75a7c6df2348175170a12b652417ac6b8960" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="symbol-processing-cmdline" version="2.0.0-1.0.22">
|
||||
<artifact name="symbol-processing-cmdline-2.0.0-1.0.22.jar">
|
||||
<sha256 value="9961400fb672e895e1c98963d493202207fd9918e38b3be27262be8b63e02d1d" origin="Generated by Gradle"/>
|
||||
|
|
@ -10225,6 +10246,14 @@
|
|||
<sha256 value="82bb8a911280a819b799b6bb2ec34461e268ef6a38cf35337ce7cda8e73bbe2e" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="symbol-processing-cmdline" version="2.1.0-1.0.29">
|
||||
<artifact name="symbol-processing-cmdline-2.1.0-1.0.29.jar">
|
||||
<sha256 value="34c4d5c1c78577e62a1a292d4438ae6bfbb230d1ab56164feccf23abdeb9a96a" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="symbol-processing-cmdline-2.1.0-1.0.29.pom">
|
||||
<sha256 value="261fd00d9ecba3cd22e59ce01ee748faffb91dac0dbe4f9889f43c61f2cd8a94" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="symbol-processing-common-deps" version="2.0.0-1.0.22">
|
||||
<artifact name="symbol-processing-common-deps-2.0.0-1.0.22.jar">
|
||||
<sha256 value="9109a3cf75c157cda8e81a04da064fbe19d64e5844695d1a4ef357ce507ac28d" origin="Generated by Gradle"/>
|
||||
|
|
@ -10305,6 +10334,14 @@
|
|||
<sha256 value="320680916f281b42f46f7361d40ed6011af5c14d31ff2651750bf9e2ed351f3a" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="symbol-processing-common-deps" version="2.1.0-1.0.29">
|
||||
<artifact name="symbol-processing-common-deps-2.1.0-1.0.29.jar">
|
||||
<sha256 value="a74ff0e922fba5b27cd7ce49025c9ea4d73f824d2a3ac0c2697b39bc12da9b92" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="symbol-processing-common-deps-2.1.0-1.0.29.module">
|
||||
<sha256 value="6740a5ef6fc6be1eea859bcc13efe97565b509b7d5677bb76404d28b2755af30" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="symbol-processing-gradle-plugin" version="2.0.0-1.0.22">
|
||||
<artifact name="symbol-processing-gradle-plugin-2.0.0-1.0.22.jar">
|
||||
<sha256 value="aa04d695caafd2ee1a1a061ae520a44e17594d5cce212c23337c6d1c52893988" origin="Generated by Gradle"/>
|
||||
|
|
@ -10385,6 +10422,14 @@
|
|||
<sha256 value="3d54a0179bd22417a4ec1568038c17bd717865413aaceb58db4a3f3e1830fdbe" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.devtools.ksp" name="symbol-processing-gradle-plugin" version="2.1.0-1.0.29">
|
||||
<artifact name="symbol-processing-gradle-plugin-2.1.0-1.0.29.jar">
|
||||
<sha256 value="d68d5a99bce275bafaeb108448b9ad473b1b062564b11f1ad65bd0b5b3942b92" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="symbol-processing-gradle-plugin-2.1.0-1.0.29.module">
|
||||
<sha256 value="f46fa4335a8f7ac3c351d8e28f93cd2253071378b81bade36bba113425ff3f47" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="com.google.errorprone" name="error_prone_annotation" version="2.19.1">
|
||||
<artifact name="error_prone_annotation-2.19.1.jar">
|
||||
<sha256 value="38c45cdaf993a7df6697703ca6ee00acbe376d3dade8d44daac3e33f039ca516" origin="Generated by Gradle"/>
|
||||
|
|
@ -12392,6 +12437,14 @@
|
|||
<sha256 value="62b4023ef2167f8aeadc577c9b0964a5abe47ac9a8656242886a05be3f298514" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-android-extensions-runtime" version="2.1.0">
|
||||
<artifact name="kotlin-android-extensions-runtime-2.1.0.jar">
|
||||
<sha256 value="2f7dedc794e036c18916bf84b3e0774bfb921422590793961ff011e0b0fe2ba7" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-android-extensions-runtime-2.1.0.pom">
|
||||
<sha256 value="8a5bb0ff0296b8e112246efabcfdadbd2739fb93966968c9f047b6bb151e7100" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-bom" version="1.8.21">
|
||||
<artifact name="kotlin-bom-1.8.21.pom">
|
||||
<sha256 value="43f52cd839d8fd872f240491d38fa7df170a87a36e105e700dd939d15572a8ef" origin="Generated by Gradle"/>
|
||||
|
|
@ -12449,6 +12502,14 @@
|
|||
<sha256 value="a8d3fb86e9367206240a1dbee8b3010ad7913fea18fbd46dbf6101f98be3e15d" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-build-common" version="2.1.0">
|
||||
<artifact name="kotlin-build-common-2.1.0.jar">
|
||||
<sha256 value="3a5d34e8b1ed8b80ee22d54488c2a425cf7b685481916d726ffb9994088d2cb9" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-build-common-2.1.0.pom">
|
||||
<sha256 value="0e35c2444d46014dfade076016b787c9d533f9858109df1e4ce67ced4d1a96c3" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-build-statistics" version="2.0.0">
|
||||
<artifact name="kotlin-build-statistics-2.0.0.jar">
|
||||
<sha256 value="f089b5f057f7c78630107bf4661f75b68cf1ce7492f415bdf2b50bc2b47ef815" origin="Generated by Gradle"/>
|
||||
|
|
@ -12481,6 +12542,14 @@
|
|||
<sha256 value="fe24dc606fec83ec98dd08bc8bb1cf99e5405de8e917c5119d5a0cb7efac559d" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-build-statistics" version="2.1.0">
|
||||
<artifact name="kotlin-build-statistics-2.1.0.jar">
|
||||
<sha256 value="32bc03764535ddbc2db1f98836579af6b631c8bea62071864ab02145f2769fbb" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-build-statistics-2.1.0.pom">
|
||||
<sha256 value="2c8c6ac4cf534eacaba9ff5ed3fa45d8029d3a31b211e9e002dfce79fc7a21ca" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-build-tools-api" version="2.0.0">
|
||||
<artifact name="kotlin-build-tools-api-2.0.0.jar">
|
||||
<sha256 value="8be57288054decd4bca5a2dcb89e4e8e896c2520e45a2488765d813ffd229f11" origin="Generated by Gradle"/>
|
||||
|
|
@ -12513,6 +12582,14 @@
|
|||
<sha256 value="ccbd97693036634816295198e4944534fafb73d778f8cd4d439f3c87b090f494" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-build-tools-api" version="2.1.0">
|
||||
<artifact name="kotlin-build-tools-api-2.1.0.jar">
|
||||
<sha256 value="f145b814f9c01328c2c369a6b8fc77434cac02a7d68f0e05d0dd4cada78bbac7" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-build-tools-api-2.1.0.pom">
|
||||
<sha256 value="e3cfc8da8ddf3bbd3f0ca07183a51feb4893e8bcb8fee801f4b8ce05ef9443a9" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-build-tools-impl" version="2.0.0">
|
||||
<artifact name="kotlin-build-tools-impl-2.0.0.jar">
|
||||
<sha256 value="551cce7299ed378a4fed97e6c26179af10f18b7b263f9599ae0086faa160446b" origin="Generated by Gradle"/>
|
||||
|
|
@ -12545,6 +12622,14 @@
|
|||
<sha256 value="7a93c8db6b6aa85b4fcaf0f48ca7016b9a84cd2396a0652b7ae9ade7679a4e41" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-build-tools-impl" version="2.1.0">
|
||||
<artifact name="kotlin-build-tools-impl-2.1.0.jar">
|
||||
<sha256 value="958827bc3711fc3c3491fc77f367a999ad558352b1a2b32d18f5916cce15ed39" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-build-tools-impl-2.1.0.pom">
|
||||
<sha256 value="58ee953420c53e1ea3ab896aaef9964960b444ca8e0a07f76e951e05c62102f9" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-compiler-embeddable" version="1.9.10">
|
||||
<artifact name="kotlin-compiler-embeddable-1.9.10.jar">
|
||||
<sha256 value="b6d3965fdb3fc2a5f8d965681c215c37552b28ae5ad19fcadbc1568c9b65dab4" origin="Generated by Gradle"/>
|
||||
|
|
@ -12585,6 +12670,14 @@
|
|||
<sha256 value="bd4656a46ec418252e5bc5e1c20eb2029fb2a8e0e3cc94eeddfac7e87c8cd5b6" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-compiler-embeddable" version="2.1.0">
|
||||
<artifact name="kotlin-compiler-embeddable-2.1.0.jar">
|
||||
<sha256 value="c1b139a6f251c3b99e92befa326cb75d93a001d74c3ac601155a8cdb0d253783" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-compiler-embeddable-2.1.0.pom">
|
||||
<sha256 value="0044fa45046fba7ca808d98f9895f25b16510edb53c1e282107db006d126d67f" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-compiler-runner" version="2.0.0">
|
||||
<artifact name="kotlin-compiler-runner-2.0.0.jar">
|
||||
<sha256 value="18f22b00697b84ef45a41d2b0a572261f299eaa7dcdda819d8773948e4472474" origin="Generated by Gradle"/>
|
||||
|
|
@ -12617,6 +12710,14 @@
|
|||
<sha256 value="f9676ad4954114b81cdfd091e9b5b427bc6491cfa94484668d653d4d19023e6d" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-compiler-runner" version="2.1.0">
|
||||
<artifact name="kotlin-compiler-runner-2.1.0.jar">
|
||||
<sha256 value="915872c85112df5bc08ec25a1af5d86a2d3f82b1d845310eee62be5508c13497" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-compiler-runner-2.1.0.pom">
|
||||
<sha256 value="13ad1bfcea4778db8336d30bd8edf02239354475f2c4d3289ddffb5a183205d5" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-daemon-client" version="2.0.0">
|
||||
<artifact name="kotlin-daemon-client-2.0.0.jar">
|
||||
<sha256 value="dfa5ae84fc665b0478475fd9a63f2f984a9155ce1bfb4dc2abea278c6a0f2d94" origin="Generated by Gradle"/>
|
||||
|
|
@ -12649,6 +12750,14 @@
|
|||
<sha256 value="f28638246b505520bfe935f15f3ecf39e4ba5526fa45c8f32ac7de7a31237400" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-daemon-client" version="2.1.0">
|
||||
<artifact name="kotlin-daemon-client-2.1.0.jar">
|
||||
<sha256 value="1751dabfcd76b58f878b90df6a602241ec4e4cd6fed60e2d5c2201c5068451e3" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-daemon-client-2.1.0.pom">
|
||||
<sha256 value="43aebe513576d51f48129cd85c860d0813de6a1cc7591aca7c28e5432cf8df1b" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-daemon-embeddable" version="1.9.10">
|
||||
<artifact name="kotlin-daemon-embeddable-1.9.10.jar">
|
||||
<sha256 value="79bd4bf388da4430b0a9be86d2f72a111110941965edd478e99f3ae083156116" origin="Generated by Gradle"/>
|
||||
|
|
@ -12689,6 +12798,14 @@
|
|||
<sha256 value="8db67b40dd6025a2ed069294f2c9bcfb6b96db3159cfef76edd7841c266afbf0" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-daemon-embeddable" version="2.1.0">
|
||||
<artifact name="kotlin-daemon-embeddable-2.1.0.jar">
|
||||
<sha256 value="6aa581bd53c3500e380e4bb6b2407f6d233910012f425349c2ed5a8ddbe29eac" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-daemon-embeddable-2.1.0.pom">
|
||||
<sha256 value="c85b7aec38f0a3e53cd221265d08233d9ab1f0600902b7d3d74754def84abf18" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin" version="2.0.0">
|
||||
<artifact name="kotlin-gradle-plugin-2.0.0-gradle85.jar">
|
||||
<sha256 value="fa9f364fb3ff1330ea2908e6ddfe66ee3d20abe975d61ae9f81e1e6bd276eaf7" origin="Generated by Gradle"/>
|
||||
|
|
@ -12721,6 +12838,14 @@
|
|||
<sha256 value="0f9897a06c07a3e87d647131cc3490a1f72d1ae54c107f13f72269d5344b087a" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin" version="2.1.0">
|
||||
<artifact name="kotlin-gradle-plugin-2.1.0-gradle85.jar">
|
||||
<sha256 value="caafc71157634bf7864f44026f5a63d256881c1cd9711456325266a53bafe728" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-gradle-plugin-2.1.0.module">
|
||||
<sha256 value="0a846b51225d2a0443f005316cbb1318591f5855ae6e955f7860c25bee9d2b17" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-annotations" version="2.0.0">
|
||||
<artifact name="kotlin-gradle-plugin-annotations-2.0.0.jar">
|
||||
<sha256 value="42b614cf70363be1195490e2567ad38cf26ccb32cf45db90509434e9621cb633" origin="Generated by Gradle"/>
|
||||
|
|
@ -12753,6 +12878,14 @@
|
|||
<sha256 value="3fe08b95437b0b4ef8b16b77f61a889b39f5c46b7e971d4dfbade66d440ea1d8" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-annotations" version="2.1.0">
|
||||
<artifact name="kotlin-gradle-plugin-annotations-2.1.0.jar">
|
||||
<sha256 value="d53e97f0e13a37d8fa98fb44cd67e45d3bcf8b4278fdbe1acd1ddbccc740f74b" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-gradle-plugin-annotations-2.1.0.pom">
|
||||
<sha256 value="6c1ca8596963f1cd12951aee50e34c47b3c0a58893d20f138240f5786c68e4bf" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-api" version="2.0.0">
|
||||
<artifact name="kotlin-gradle-plugin-api-2.0.0.jar">
|
||||
<sha256 value="f95693a82de0bbfb06d6b1eac364954b68bf488ba0c8cc2ff273976bb28ee223" origin="Generated by Gradle"/>
|
||||
|
|
@ -12785,6 +12918,14 @@
|
|||
<sha256 value="cf6f5d344c555554bfac64051ead0085cbd4338676baa3fc87b503e9e4abbe34" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-api" version="2.1.0">
|
||||
<artifact name="kotlin-gradle-plugin-api-2.1.0.jar">
|
||||
<sha256 value="bf03d64ecffcb66d73fea0991768dd75cbeb1192d47c7a48b61ba7f7ca258858" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-gradle-plugin-api-2.1.0.module">
|
||||
<sha256 value="9ad196cf9a5c7d8840ad974d697a3af94990ecf16df681e755a90bf42a3ea410" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-idea" version="2.0.0">
|
||||
<artifact name="kotlin-gradle-plugin-idea-2.0.0.jar">
|
||||
<sha256 value="c1f4ea0c19267f1eed474b541b07715c49167acfbf027a8a2fd07cbbc81b8e72" origin="Generated by Gradle"/>
|
||||
|
|
@ -12817,6 +12958,14 @@
|
|||
<sha256 value="62a70d020dbb0780647b115518804713e67606405ae97a10d8fda3829388d149" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-idea" version="2.1.0">
|
||||
<artifact name="kotlin-gradle-plugin-idea-2.1.0.jar">
|
||||
<sha256 value="1a7e8d40f5498649e7b1995e87bd73504875254ad9cad093b86b81347e80151c" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-gradle-plugin-idea-2.1.0.module">
|
||||
<sha256 value="cb206888b337cc56acba00bded11942b03b463333fedf25cccd741ef73a8c3e9" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-idea-proto" version="2.0.0">
|
||||
<artifact name="kotlin-gradle-plugin-idea-proto-2.0.0.jar">
|
||||
<sha256 value="51d31fe50bc89ac080d49bc87cc77f139586cfcb1098d4aaafbbc72a71d8e207" origin="Generated by Gradle"/>
|
||||
|
|
@ -12849,6 +12998,14 @@
|
|||
<sha256 value="38cc9a2cb7f9e4afd439c31076f833153848b1f7ed2133200835d1b420df6eab" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-idea-proto" version="2.1.0">
|
||||
<artifact name="kotlin-gradle-plugin-idea-proto-2.1.0.jar">
|
||||
<sha256 value="96d0c169ae7e8191935f748146b9f64a1f6f25d121941e29714faaab089da910" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-gradle-plugin-idea-proto-2.1.0.pom">
|
||||
<sha256 value="0ec74e3cc7c7a20ca4d8860f9d2cd965670ec419b389ead09d712c81d1bc6047" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-model" version="2.0.0">
|
||||
<artifact name="kotlin-gradle-plugin-model-2.0.0.jar">
|
||||
<sha256 value="b7b436caef0b0d5f571ddd88214418cf8580a34ec8e81f22503cef35755552d9" origin="Generated by Gradle"/>
|
||||
|
|
@ -12881,6 +13038,14 @@
|
|||
<sha256 value="eaa9fd9f86fbd44ff6070a197dc7bdd1980f0d41e8db49b252803d03aa4c55ac" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugin-model" version="2.1.0">
|
||||
<artifact name="kotlin-gradle-plugin-model-2.1.0.jar">
|
||||
<sha256 value="306832bc994a061f3bf3f1be592b23945057080499e7dc33c52cb69e33d19164" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-gradle-plugin-model-2.1.0.module">
|
||||
<sha256 value="fdb78fa159a111bf9cd0c08023b728c77aebddcb95cfdc505f926a9218adc6a1" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugins-bom" version="2.0.0">
|
||||
<artifact name="kotlin-gradle-plugins-bom-2.0.0.module">
|
||||
<sha256 value="eab8df114dc10987acd3093ca2ae310b753a13b718a263d5b5d83a6595c04bda" origin="Generated by Gradle"/>
|
||||
|
|
@ -12913,6 +13078,14 @@
|
|||
<sha256 value="675013d4cbeee09c88920ae2ba246f99f28a789b874f634049e012fa3eebf4c8" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-gradle-plugins-bom" version="2.1.0">
|
||||
<artifact name="kotlin-gradle-plugins-bom-2.1.0.module">
|
||||
<sha256 value="a81bd9adbd3ba75a05a6c3a3ed846e0c92a5a7ac4ce8363cf604b4f2c8a7b75c" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-gradle-plugins-bom-2.1.0.pom">
|
||||
<sha256 value="9216b199d987cab680450aac715caa57571f8a67800e36e37026f8f453c1feb1" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-klib-commonizer-api" version="2.0.0">
|
||||
<artifact name="kotlin-klib-commonizer-api-2.0.0.jar">
|
||||
<sha256 value="1e1b57dc1f802aa778f5f46054a253213d8b03c58357e347f08222a2d1950175" origin="Generated by Gradle"/>
|
||||
|
|
@ -12945,6 +13118,14 @@
|
|||
<sha256 value="63fe87bd2235b129409c722a09b62c20a7b77ae79019e22031248af736b03c54" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-klib-commonizer-api" version="2.1.0">
|
||||
<artifact name="kotlin-klib-commonizer-api-2.1.0.jar">
|
||||
<sha256 value="05fcb427938d6e2379a8430bb6613ab2fe2089d057e064530e7225b864cf9e37" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-klib-commonizer-api-2.1.0.pom">
|
||||
<sha256 value="6ee261b9393ccd649ef39efea73bef2e98e46caed5622008dedd769e4cd877eb" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-klib-commonizer-embeddable" version="2.0.0">
|
||||
<artifact name="kotlin-klib-commonizer-embeddable-2.0.0.jar">
|
||||
<sha256 value="687bca71931939389e9d0200f95ecc1508e0d41851ede51f4610f876d037a1dd" origin="Generated by Gradle"/>
|
||||
|
|
@ -12977,6 +13158,14 @@
|
|||
<sha256 value="7ac81f3bb07c4d6aa8fa98ff5a399a47abd1ce1c786d4f3fad96ef28120bdf8a" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-klib-commonizer-embeddable" version="2.1.0">
|
||||
<artifact name="kotlin-klib-commonizer-embeddable-2.1.0.jar">
|
||||
<sha256 value="d937f731886937ba369a46b2263294cf1170989d3321d07153c91d9cb86a99d9" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-klib-commonizer-embeddable-2.1.0.pom">
|
||||
<sha256 value="67ec3e97100b876dd2b805c9d30fd96d000e56661979a976c483d20a900f29bd" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-native-prebuilt" version="2.0.0">
|
||||
<artifact name="kotlin-native-prebuilt-2.0.0-linux-x86_64.tar.gz">
|
||||
<sha256 value="1c1e18487ffcee3c19a1ca6500dd6589efdae844bade5ec071fbeca801292aa3" origin="Generated by Gradle"/>
|
||||
|
|
@ -13031,6 +13220,14 @@
|
|||
<sha256 value="6690773e7649d1d0fad55d0609a4e21e1ebc985dd0fa261e9c6ffd389867061d" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-native-utils" version="2.1.0">
|
||||
<artifact name="kotlin-native-utils-2.1.0.jar">
|
||||
<sha256 value="c4396feba6d0a24ab717426b36418e945b7cd0f50d77c866524f26676f968439" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-native-utils-2.1.0.pom">
|
||||
<sha256 value="e8d410f736cfaca2fb277b98e4a2796f0e544e1e096a004385c7befce531ee01" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-parcelize-compiler" version="2.0.0">
|
||||
<artifact name="kotlin-parcelize-compiler-2.0.0.jar">
|
||||
<sha256 value="a5014fb9369dca119d88df58205f7aa5ddc2589aa2ad5daa90c2f95e3ff4e86e" origin="Generated by Gradle"/>
|
||||
|
|
@ -13063,6 +13260,14 @@
|
|||
<sha256 value="c75c50c69c0ec47fff2b4fb841f7be870356ffb7b565fbeb403b0daf000cc367" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-parcelize-compiler" version="2.1.0">
|
||||
<artifact name="kotlin-parcelize-compiler-2.1.0.jar">
|
||||
<sha256 value="1e015b804a7fcfe1cf0d8c0157acc39cc8fdf00180df0f2128957e5227c15664" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-parcelize-compiler-2.1.0.pom">
|
||||
<sha256 value="7dc4859decaaa89851705e3a315344a3c98bc8726bdb9c69250a5fc94af93437" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-parcelize-runtime" version="2.0.0">
|
||||
<artifact name="kotlin-parcelize-runtime-2.0.0-sources.jar">
|
||||
<sha256 value="b7cf21217b9bbfbea21dd944c163454a8592344bef5b0b92ba2fa46aa1e97660" origin="Generated by Gradle"/>
|
||||
|
|
@ -13098,6 +13303,14 @@
|
|||
<sha256 value="74c006f9ba380e80069b25acd73e5673040c81ad61755869c3219ade40457c7b" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-parcelize-runtime" version="2.1.0">
|
||||
<artifact name="kotlin-parcelize-runtime-2.1.0.jar">
|
||||
<sha256 value="dce0e2bb2aa645fe750700b793a7f6fbc752b140d374120efaece930123323c5" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-parcelize-runtime-2.1.0.pom">
|
||||
<sha256 value="d2e6941fca35768a49b360064af059e58406a8fbce729674a9d69fcd0efaf519" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-reflect" version="1.6.10">
|
||||
<artifact name="kotlin-reflect-1.6.10.jar">
|
||||
<sha256 value="3277ac102ae17aad10a55abec75ff5696c8d109790396434b496e75087854203" origin="Generated by Gradle"/>
|
||||
|
|
@ -13170,6 +13383,14 @@
|
|||
<sha256 value="95b2e929afa1071bd952fd137b2e7e81d04fe1bbb81b757ebed06b216e5a4524" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-script-runtime" version="2.1.0">
|
||||
<artifact name="kotlin-script-runtime-2.1.0.jar">
|
||||
<sha256 value="15a2b82119e9f145ea028029bd31166584648a419157c20948c124fa33d40e50" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-script-runtime-2.1.0.pom">
|
||||
<sha256 value="f3332fc0f5e962f6aefe0a2c08d3c4d7ab35b13a05dac84c4bc6914e26ed27cd" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-scripting-common" version="2.0.0">
|
||||
<artifact name="kotlin-scripting-common-2.0.0.jar">
|
||||
<sha256 value="3cb9f18af2409c90793dfc6ce265a1a9268df4c7e5de3e2a2bcee7ec86059179" origin="Generated by Gradle"/>
|
||||
|
|
@ -13202,6 +13423,14 @@
|
|||
<sha256 value="84fe9ecea8e557effa8856c9021325ad63c21d9d13121eaaeb1199f6a6586575" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-scripting-common" version="2.1.0">
|
||||
<artifact name="kotlin-scripting-common-2.1.0.jar">
|
||||
<sha256 value="d3ebe15699ec1a7fb6c3b5fa939eb6b888b3273e6c0597d2c2e3aaa0e46afa45" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-scripting-common-2.1.0.pom">
|
||||
<sha256 value="ab2b23f0cb72ec042c2b808fb18985a7ebe75a65aaa00527969e94325c6c006b" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-scripting-compiler-embeddable" version="2.0.0">
|
||||
<artifact name="kotlin-scripting-compiler-embeddable-2.0.0.jar">
|
||||
<sha256 value="1f914b74e4e135d52478d63210570f90dab04cc6a6f7d54e1f3ea8cf57a1a754" origin="Generated by Gradle"/>
|
||||
|
|
@ -13234,6 +13463,14 @@
|
|||
<sha256 value="d4287a7d40f8f818abbf7cc9847e7f392782d147dbed6a8440e473bc4f6bf2e8" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-scripting-compiler-embeddable" version="2.1.0">
|
||||
<artifact name="kotlin-scripting-compiler-embeddable-2.1.0.jar">
|
||||
<sha256 value="b2abc6d959c915af92a289aed14a530eaf09e48613f283da0a4e8d3444340fc3" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-scripting-compiler-embeddable-2.1.0.pom">
|
||||
<sha256 value="cbfaecdb0693983ab5b6aeab5e70813969f99a239c731c46f8f7404c055d7227" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-scripting-compiler-impl-embeddable" version="2.0.0">
|
||||
<artifact name="kotlin-scripting-compiler-impl-embeddable-2.0.0.jar">
|
||||
<sha256 value="98de5f7838914e6880ecaef3a6e08e5cb165f16629afa0a2df3550cf7f22d2bf" origin="Generated by Gradle"/>
|
||||
|
|
@ -13266,6 +13503,14 @@
|
|||
<sha256 value="d32b1bf24ba929a2fa32a6e344320fa7b9e7be06ce37fcf76ef3a6dc84e236b1" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-scripting-compiler-impl-embeddable" version="2.1.0">
|
||||
<artifact name="kotlin-scripting-compiler-impl-embeddable-2.1.0.jar">
|
||||
<sha256 value="8a900406012ba5eda8925856253f72235451db387f0ce50ed31d655c9e5c66d6" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-scripting-compiler-impl-embeddable-2.1.0.pom">
|
||||
<sha256 value="8b549ab2aadab49d369bfe8f1806f71ff98ffafa1570672ad8f7a8b01b236c7b" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-scripting-jvm" version="2.0.0">
|
||||
<artifact name="kotlin-scripting-jvm-2.0.0.jar">
|
||||
<sha256 value="7f20010fba093904eed7a8b84938bf9934be4747ef25f676d17bc301bd139a62" origin="Generated by Gradle"/>
|
||||
|
|
@ -13298,6 +13543,14 @@
|
|||
<sha256 value="a290858befb4299734f51b53ed9a9415a294e79ba6fc213c04c427cdc8799c0d" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-scripting-jvm" version="2.1.0">
|
||||
<artifact name="kotlin-scripting-jvm-2.1.0.jar">
|
||||
<sha256 value="c5a21b6d07ef677970b328f9ebff115282285e62c85fa1866e84e4d7be3a44a3" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-scripting-jvm-2.1.0.pom">
|
||||
<sha256 value="f0dd3c1c8a8b1dc258b566668a2dbd777ed9ad48ccafa60ec1752480b54d347a" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-stdlib" version="1.7.10">
|
||||
<artifact name="kotlin-stdlib-1.7.10.pom">
|
||||
<sha256 value="6cc0cf5a2bc02dee060ebb90c3535fc3ddbd7a3bab210ace3e142aaf81764d81" origin="Generated by Gradle"/>
|
||||
|
|
@ -13419,6 +13672,17 @@
|
|||
<sha256 value="81fd6d181012487ee3246eff4e2bacb64b58c46e5b5aa72971a4ddf1bd1541ed" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-stdlib" version="2.1.0">
|
||||
<artifact name="kotlin-stdlib-2.1.0-all.jar">
|
||||
<sha256 value="a7412f66d71bcd2721c398307972fbb5f9409f945643eee05d1080b289a339cb" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-stdlib-2.1.0.jar">
|
||||
<sha256 value="d6f91b7b0f306cca299fec74fb7c34e4874d6f5ec5b925a0b4de21901e119c3f" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-stdlib-2.1.0.module">
|
||||
<sha256 value="dcfbc8e8bf32cd67a7efadd91d31152bce9870911d6ec50878f4fdb6e03e70e2" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-stdlib-common" version="1.7.10">
|
||||
<artifact name="kotlin-stdlib-common-1.7.10.pom">
|
||||
<sha256 value="1011c63b88ee94cdff5d596937307559bc55037b733cc00ce63cda3cfae0a8eb" origin="Generated by Gradle"/>
|
||||
|
|
@ -13480,6 +13744,11 @@
|
|||
<sha256 value="6f5df8af633600a6b9cfb0fcc764af3d5119f376677677b91b6aee816b1d30ab" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-stdlib-common" version="2.1.0">
|
||||
<artifact name="kotlin-stdlib-common-2.1.0.module">
|
||||
<sha256 value="2b9a5ae785f8513a93f8cec3f6e5e07f8b1766f8497b3a487f3441a251d67563" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-stdlib-jdk7" version="1.8.21">
|
||||
<artifact name="kotlin-stdlib-jdk7-1.8.21.jar">
|
||||
<sha256 value="33d148db0e11debd0d90677d28242bced907f9c77730000fd597867089039d86" origin="Generated by Gradle"/>
|
||||
|
|
@ -13624,6 +13893,14 @@
|
|||
<sha256 value="32255efe8fcf11297bd373a8cc77f8b185d73984e91b189e79166529bdfa5d5a" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-tooling-core" version="2.1.0">
|
||||
<artifact name="kotlin-tooling-core-2.1.0.jar">
|
||||
<sha256 value="4176c612098cb92df38a485ff8b10aaa24abb400f610d48f5088aeb07c8002c8" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-tooling-core-2.1.0.pom">
|
||||
<sha256 value="a5a4e9f54a413cdb2c1d140c349b559f684b0da8b0216a0a5645206f3fc581af" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-util-io" version="2.0.0">
|
||||
<artifact name="kotlin-util-io-2.0.0.jar">
|
||||
<sha256 value="088e45d9522db6406f0b1e4ed328389c9b5992a9567cd91b57ae21c1b9221610" origin="Generated by Gradle"/>
|
||||
|
|
@ -13656,6 +13933,14 @@
|
|||
<sha256 value="e200f91767db08526c8d94addce07b90f3425414b04ecfd7ccf8e41c9f1098a0" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-util-io" version="2.1.0">
|
||||
<artifact name="kotlin-util-io-2.1.0.jar">
|
||||
<sha256 value="001a50db3da0a89a954db615fcb0e3f4a81a5341d407060ea88c9356f10f23e1" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-util-io-2.1.0.pom">
|
||||
<sha256 value="ec557203d9248a3701e1665a256cf1e91691733d95fdf2f18f39e8a8ec93c7a1" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-util-klib" version="2.0.0">
|
||||
<artifact name="kotlin-util-klib-2.0.0.jar">
|
||||
<sha256 value="95f1a677e8d24bc0b32e76783ef173c5c0e09ed41b50471736d6599bed19d875" origin="Generated by Gradle"/>
|
||||
|
|
@ -13688,6 +13973,22 @@
|
|||
<sha256 value="ef6e275998943b96f58a64964085320f103174d609ec66a4a949e60123c798f5" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-util-klib" version="2.1.0">
|
||||
<artifact name="kotlin-util-klib-2.1.0.jar">
|
||||
<sha256 value="6260a30e876a162d8268faaff6aa2d451e7bba008a03522075792a4e71a61c29" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-util-klib-2.1.0.pom">
|
||||
<sha256 value="9ebfbbc73137f4d19883df909255adbfc6d13d8fa7ec9ef47066a3b688c96cdc" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin" name="kotlin-util-klib-metadata" version="2.1.0">
|
||||
<artifact name="kotlin-util-klib-metadata-2.1.0.jar">
|
||||
<sha256 value="1a8a58974132dbf08193336a45c9350749a1af489667a199da3ebb3a8849907d" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlin-util-klib-metadata-2.1.0.pom">
|
||||
<sha256 value="e329322576dc1ca8cbe20a3afe4fd1f5724da3b95349b5538cd03b184ff971c2" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin.android" name="org.jetbrains.kotlin.android.gradle.plugin" version="2.0.0">
|
||||
<artifact name="org.jetbrains.kotlin.android.gradle.plugin-2.0.0.pom">
|
||||
<sha256 value="82549d03a6f5dbd67afb0901d8b77cd402ec3ab9d6223a91de604beadddce1f8" origin="Generated by Gradle"/>
|
||||
|
|
@ -13708,6 +14009,11 @@
|
|||
<sha256 value="9d841037c59644dc5bbe814e792ed8774eb48646f0b3a779604ee5c1b307f969" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin.android" name="org.jetbrains.kotlin.android.gradle.plugin" version="2.1.0">
|
||||
<artifact name="org.jetbrains.kotlin.android.gradle.plugin-2.1.0.pom">
|
||||
<sha256 value="96e007b3ecb22cc6d9617e414484539fe5b77b28e6659c8c916b4fddf8961ced" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin.plugin.parcelize" name="org.jetbrains.kotlin.plugin.parcelize.gradle.plugin" version="2.0.0">
|
||||
<artifact name="org.jetbrains.kotlin.plugin.parcelize.gradle.plugin-2.0.0.pom">
|
||||
<sha256 value="c96cb56fc41ad5298cf93117ab438999bb4d661e3e596ee9d4eafb9017c84150" origin="Generated by Gradle"/>
|
||||
|
|
@ -13728,6 +14034,11 @@
|
|||
<sha256 value="449d7ad7c4815ac7ef64a9c2c173ab262019f16e39abf10fc7fc13bf204cf362" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlin.plugin.parcelize" name="org.jetbrains.kotlin.plugin.parcelize.gradle.plugin" version="2.1.0">
|
||||
<artifact name="org.jetbrains.kotlin.plugin.parcelize.gradle.plugin-2.1.0.pom">
|
||||
<sha256 value="8d63aa1547dc4fc8d54d81427fcdb5b3d2e3139e694abaa8a654f29354895506" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="atomicfu" version="0.20.2">
|
||||
<artifact name="atomicfu-0.20.2.module">
|
||||
<sha256 value="2c995e0e83c583e125706fba3fe85170020d17a88f89d6294a53cd8bd7c4c384" origin="Generated by Gradle"/>
|
||||
|
|
@ -13744,6 +14055,14 @@
|
|||
<sha256 value="7db8660ebe4b91bb478edb3616c4e3a50ba59c07dca517d1e1284c03fe86ac57" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-android" version="1.10.1">
|
||||
<artifact name="kotlinx-coroutines-android-1.10.1.jar">
|
||||
<sha256 value="bc5e60e0e61842558dd19c52bdd24882d40b001e6b1beaea9c4120af7b95ba1c" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlinx-coroutines-android-1.10.1.module">
|
||||
<sha256 value="b3707d750fae0a4b04b0995160da6a4e84e0226491ac71d8efa315cd5fb89f33" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-android" version="1.7.1">
|
||||
<artifact name="kotlinx-coroutines-android-1.7.1.jar">
|
||||
<sha256 value="107313760c18f8da174e8d8103504a468e806e88f7b55a84bd1c0eaeea118e9a" origin="Generated by Gradle"/>
|
||||
|
|
@ -13768,6 +14087,11 @@
|
|||
<sha256 value="7df1e04d77f0cc411890d999a9449b0e3bcd4f159a46c3060b110204ca607d43" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-bom" version="1.10.1">
|
||||
<artifact name="kotlinx-coroutines-bom-1.10.1.pom">
|
||||
<sha256 value="9cbd04ba63e7399856745713e312d2f2161a1d44eda506ded47c8d56daf8461f" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-bom" version="1.6.4">
|
||||
<artifact name="kotlinx-coroutines-bom-1.6.4.pom">
|
||||
<sha256 value="ab2614855fba66aa8a42514dbe3d5a884315ffe1ed63f5932e710a8006245ce1" origin="Generated by Gradle"/>
|
||||
|
|
@ -13793,6 +14117,14 @@
|
|||
<sha256 value="bea5511e9001f2c593ab5080df131b219ab5e2085cc5979ce583eacd4946fd78" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-core" version="1.10.1">
|
||||
<artifact name="kotlinx-coroutines-core-1.10.1.module">
|
||||
<sha256 value="cbfd6d173e0a5c2986af953f8b1ccf29802aad09eaca6a4e9114108f8acac8b1" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlinx-coroutines-core-metadata-1.10.1.jar">
|
||||
<sha256 value="fae4771dd987cfadabae129dd7f625af40d9e4f14abb7ffc72e42dccb97b7010" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-core" version="1.3.4">
|
||||
<artifact name="kotlinx-coroutines-core-1.3.4.pom">
|
||||
<sha256 value="c7cc337927e05dfe4437717eb2ca7c3c9a58f10efecb93d387c3b806829adee6" origin="Generated by Gradle"/>
|
||||
|
|
@ -13827,6 +14159,14 @@
|
|||
<sha256 value="7089c33c145865020760d3dbca5e4634133cc3dd7feb926e830f6de6ede28ac6" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-core-jvm" version="1.10.1">
|
||||
<artifact name="kotlinx-coroutines-core-jvm-1.10.1.jar">
|
||||
<sha256 value="069c5988633230e074ec0d39321ec3cdaa4547c49e90ba936c63d8fc91c8c00d" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlinx-coroutines-core-jvm-1.10.1.module">
|
||||
<sha256 value="18dd65465ec80d0e6e5d71818bf1192ef4817cf5d201282b5b9b1b713ac7969a" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-core-jvm" version="1.5.0">
|
||||
<artifact name="kotlinx-coroutines-core-jvm-1.5.0.jar">
|
||||
<sha256 value="78d6cc7135f84d692ff3752fcfd1fa1bbe0940d7df70652e4f1eaeec0c78afbb" origin="Generated by Gradle"/>
|
||||
|
|
@ -13872,6 +14212,14 @@
|
|||
<sha256 value="b321a899e40d3ce345707aa2cfda9983ad0dcc69fea74a9b8bf906a16c1cf8a9" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-test" version="1.10.1">
|
||||
<artifact name="kotlinx-coroutines-test-1.10.1.module">
|
||||
<sha256 value="024bcae79a0c2b6d18b0ba914c9f5de145bbfbc9dc919f270f895b2e3df87155" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlinx-coroutines-test-metadata-1.10.1.jar">
|
||||
<sha256 value="fadbe04fbda7a27728770d8eaecbdec0a9b0b29693c20cbea77655d783d8bd78" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-test" version="1.8.1">
|
||||
<artifact name="kotlinx-coroutines-test-1.8.1.module">
|
||||
<sha256 value="a1cee2dab296c13b78ec1c060e18fe40334a440c8a077e90cca6de72527d8cde" origin="Generated by Gradle"/>
|
||||
|
|
@ -13888,6 +14236,14 @@
|
|||
<sha256 value="b9f0603718765fe9f93b4a139198ada254f11c7bf18e48c99629a3a73ce281d1" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-test-jvm" version="1.10.1">
|
||||
<artifact name="kotlinx-coroutines-test-jvm-1.10.1.jar">
|
||||
<sha256 value="ac3f456c9e25c3fc01542dc208655d0583cd37b5f72c35856267b74bd1664ab6" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
<artifact name="kotlinx-coroutines-test-jvm-1.10.1.module">
|
||||
<sha256 value="d55cb7baa4bd571857a2fb0096ada90839290cf6f3970de1c86a374aeb238582" origin="Generated by Gradle"/>
|
||||
</artifact>
|
||||
</component>
|
||||
<component group="org.jetbrains.kotlinx" name="kotlinx-coroutines-test-jvm" version="1.8.1">
|
||||
<artifact name="kotlinx-coroutines-test-jvm-1.8.1-sources.jar">
|
||||
<sha256 value="bea89f1396fcb311f672d6f82ea6504c5bf60b426d97611473ad04ffaf4253ba" origin="Generated by Gradle"/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue