Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
Gradle -> 8.7.3
Ktor -> 3.0.3
kotlinCoroutines -> 1.10.1
kotlinSerialization -> 1.7.3
move publish plugin to toml
remove warning
  • Loading branch information
frankois944 committed Dec 23, 2024
1 parent a2aa9ab commit d1f1561
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 13 deletions.
2 changes: 1 addition & 1 deletion KtorKMPFileCaching/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
alias(libs.plugins.kotlinMultiplatform)
alias(libs.plugins.androidLibrary)
alias(libs.plugins.kotlinSerialization)
id("com.vanniktech.maven.publish") version "0.30.0"
alias(libs.plugins.publish)
}


Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@file:Suppress("EXPECT_ACTUAL_CLASSIFIERS_ARE_IN_BETA_WARNING")

package fr.frankois944.ktorfilecaching

import okio.FileSystem
Expand Down
1 change: 1 addition & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ plugins {
alias(libs.plugins.androidLibrary).apply(false)
alias(libs.plugins.kotlinMultiplatform).apply(false)
alias(libs.plugins.kotlinSerialization).apply(false)
alias(libs.plugins.publish).apply(false)
}
14 changes: 8 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[versions]
agp = "8.3.2"
agp = "8.7.3"
kotlin = "2.1.0"
kotlinSerialization = "1.7.0" # https://github.com/Kotlin/kotlinx.serialization/releases
kotlinCoroutines = "1.9.0" # https://github.com/Kotlin/kotlinx.coroutines/releases
ktor = "3.0.2"
kotlinSerialization = "1.7.3" # https://github.com/Kotlin/kotlinx.serialization/releases
kotlinCoroutines = "1.10.1" # https://github.com/Kotlin/kotlinx.coroutines/releases
ktor = "3.0.3" # https://github.com/ktorio/ktor/releases
okio = "3.9.1" # https://square.github.io/okio/changelog/
slf4jAndroid="1.7.36"
slf4jJvm="2.0.13"
slf4jJvm="2.0.16"
kotlinx-browser="0.3"
kotlinx-datetime="0.6.1"
publish="0.30.0"

[libraries]
ktor-client-core = { module = "io.ktor:ktor-client-core", version.ref = "ktor" }
Expand All @@ -27,6 +28,7 @@ kotlinx-browser = { module = "org.jetbrains.kotlinx:kotlinx-browser", version.re
kotlinx-datetime = { module = "org.jetbrains.kotlinx:kotlinx-datetime", version.ref = "kotlinx-datetime" }

[plugins]
publish = { id = "com.vanniktech.maven.publish", version.ref = "publish" }
androidLibrary = { id = "com.android.library", version.ref = "agp" }
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
kotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlinSerialization" }
kotlinSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Jun 20 16:47:04 CEST 2024
#Mon Dec 23 11:14:35 CET 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 4 additions & 4 deletions kotlin-js-store/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2065,10 +2065,10 @@ wrappy@1:
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==

ws@8.5.0:
version "8.5.0"
resolved "https://registry.yarnpkg.com/ws/-/ws-8.5.0.tgz#bfb4be96600757fe5382de12c670dab984a1ed4f"
integrity sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==
ws@8.18.0:
version "8.18.0"
resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==

ws@~8.17.1:
version "8.17.1"
Expand Down

0 comments on commit d1f1561

Please sign in to comment.