Skip to content

Commit

Permalink
dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joreilly committed Dec 2, 2023
1 parent d3cbb1c commit d6c1f6e
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
10 changes: 5 additions & 5 deletions backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ kotlin {
implementation(libs.kotlinx.coroutines)
implementation(libs.kotlinx.serialization)

implementation("io.ktor:ktor-server-core:2.3.5")
implementation("io.ktor:ktor-server-netty:2.3.5")
implementation("io.ktor:ktor-server-cors:2.3.5")
implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.5")
implementation("io.ktor:ktor-server-content-negotiation:2.3.5")
implementation("io.ktor:ktor-server-core:2.3.6")
implementation("io.ktor:ktor-server-netty:2.3.6")
implementation("io.ktor:ktor-server-cors:2.3.6")
implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.6")
implementation("io.ktor:ktor-server-content-negotiation:2.3.6")

implementation("ch.qos.logback:logback-classic:1.2.3")

Expand Down
12 changes: 4 additions & 8 deletions buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,10 @@

object Versions {
const val androidXTestJUnit = "1.1.5"
const val testCore = "1.3.0"
const val testCore = "1.5.0"
const val mockito = "3.11.2"
const val robolectric = "4.10"

// const val lifecycleKtx = "2.6.1"
// const val lifecycleRuntimeKtx = lifecycleKtx
// const val lifecycleViewmodelKtx = lifecycleKtx

const val gradleVersionsPlugin = "0.39.0"
}

Expand All @@ -21,9 +17,9 @@ object AndroidSdk {

object Deps {
object AndroidX {
const val benchmarkMacroJunit4 = "androidx.benchmark:benchmark-macro-junit4:1.2.0"
const val benchmarkJunit4 = "androidx.benchmark:benchmark-junit4:1.2.0"
const val testEspressoCore = "androidx.test.espresso:espresso-core:3.4.0"
const val benchmarkMacroJunit4 = "androidx.benchmark:benchmark-macro-junit4:1.2.2"
const val benchmarkJunit4 = "androidx.benchmark:benchmark-junit4:1.2.2"
const val testEspressoCore = "androidx.test.espresso:espresso-core:3.5.1"
const val testExtJunit = "androidx.test.ext:junit:1.1.5"
const val testUiautomator = "androidx.test.uiautomator:uiautomator:2.2.0"
}
Expand Down
4 changes: 4 additions & 0 deletions compose-desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ application {
mainClass.set("MainKt")
}

compose {
kotlinCompilerPlugin.set(libs.versions.jbComposeCompiler)
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=${libs.versions.kotlin}")
}
4 changes: 2 additions & 2 deletions compose-web-wasm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ compose.experimental {
}

compose {
kotlinCompilerPlugin.set("1.5.3")
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.20")
kotlinCompilerPlugin.set(libs.versions.jbComposeCompiler)
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=${libs.versions.kotlin}")
}
2 changes: 1 addition & 1 deletion compose-web/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ afterEvaluate {

compose {
kotlinCompilerPlugin.set(libs.versions.jbComposeCompiler)
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.20")
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=${libs.versions.kotlin}")
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ org.jetbrains.compose.experimental.uikit.enabled=true
kotlin.mpp.stability.nowarn=true
kotlin.mpp.androidSourceSetLayoutVersion=2

#kotlin.experimental.tryK2=true
kotlin.experimental.tryK2=true
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
kotlin = "1.9.20"
ksp = "1.9.20-1.0.14"
kotlin = "1.9.21"
ksp = "1.9.21-1.0.15"
coroutines = "1.8.0-RC"
kotlinxSerialization = "1.6.2"
kotlinxDateTime = "0.5.0"
Expand All @@ -13,8 +13,8 @@ sqlDelight = "2.0.0"
kmpNativeCoroutines = "1.0.0-ALPHA-21"

androidxActivity = "1.8.1"
androidxComposeCompiler = "1.5.5"
jbComposeCompiler = "1.5.3"
androidxComposeCompiler = "1.5.5-dev-k1.9.21-163bb051fe5"
jbComposeCompiler = "1.5.4"
androidxComposeBom = "2023.10.01"
androidxNavigationCompose = "2.7.5"
wearCompose = "1.2.1"
Expand All @@ -31,7 +31,7 @@ glanceAppWidget = "1.0.0"
junit = "4.13.2"
robolectric = "4.11.1"

multiplatformSettings = "1.1.0"
multiplatformSettings = "1.1.1"
kermit = "2.0.2"

gradleVersionsPlugin = "0.39.0"
Expand Down

0 comments on commit d6c1f6e

Please sign in to comment.