mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 12:57:04 +05:30
chore(deps): upgrade to Kotlin 1.8.0
This commit is contained in:
parent
002588a45a
commit
7b13d40797
3 changed files with 17 additions and 6 deletions
2
.github/renovate.json
vendored
2
.github/renovate.json
vendored
|
@ -35,7 +35,7 @@
|
||||||
"androidx.compose.compiler:compiler"
|
"androidx.compose.compiler:compiler"
|
||||||
],
|
],
|
||||||
"registryUrls": [
|
"registryUrls": [
|
||||||
"https://maven.google.com/"
|
"https://androidx.dev/storage/compose-compiler/repository/"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -4,18 +4,18 @@ agp = "7.4.0-rc03"
|
||||||
androidx-test = "1.5.0"
|
androidx-test = "1.5.0"
|
||||||
coil = "2.2.2"
|
coil = "2.2.2"
|
||||||
# @keep used for kotlinCompilerExtensionVersion
|
# @keep used for kotlinCompilerExtensionVersion
|
||||||
composeCompiler = "1.4.0-alpha02"
|
composeCompiler = "1.4.0-dev-k1.8.0-33c0ad36f83"
|
||||||
coroutines = "1.6.4"
|
coroutines = "1.6.4"
|
||||||
dagger = "2.44.2"
|
dagger = "2.44.2"
|
||||||
kotest = "5.5.4"
|
kotest = "5.5.4"
|
||||||
kotlin = "1.7.21"
|
kotlin = "1.8.0"
|
||||||
# @pin Needs to be aligned with Retrofit
|
# @pin Needs to be aligned with Retrofit
|
||||||
okhttp = "3.14.9"
|
okhttp = "3.14.9"
|
||||||
retrofit = "2.9.0"
|
retrofit = "2.9.0"
|
||||||
richtext = "0.16.0"
|
richtext = "0.16.0"
|
||||||
serialization = "1.4.1"
|
serialization = "1.4.1"
|
||||||
sqldelight = "2.0.0-alpha04"
|
sqldelight = "2.0.0-alpha04"
|
||||||
whetstone = "0.5.0-SNAPSHOT"
|
whetstone = "0.6.0-SNAPSHOT"
|
||||||
workmanager = "2.8.0-rc01"
|
workmanager = "2.8.0-rc01"
|
||||||
|
|
||||||
[libraries]
|
[libraries]
|
||||||
|
@ -86,7 +86,7 @@ whetstone = { module = "com.deliveryhero.whetstone:whetstone", version.ref = "wh
|
||||||
|
|
||||||
[plugins]
|
[plugins]
|
||||||
android-test = { id = "com.android.test", version.ref = "agp" }
|
android-test = { id = "com.android.test", version.ref = "agp" }
|
||||||
anvil = "com.squareup.anvil:2.4.3"
|
anvil = "com.squareup.anvil:2.4.4-SNAPSHOT"
|
||||||
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
|
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
|
||||||
sqldelight = { id = "app.cash.sqldelight", version.ref = "sqldelight" }
|
sqldelight = { id = "app.cash.sqldelight", version.ref = "sqldelight" }
|
||||||
whetstone = { id = "dev.msfjarvis.whetstone", version.ref = "whetstone" }
|
whetstone = { id = "dev.msfjarvis.whetstone", version.ref = "whetstone" }
|
||||||
|
|
|
@ -38,6 +38,10 @@ pluginManagement {
|
||||||
forRepository { maven("https://oss.sonatype.org/content/repositories/snapshots/") }
|
forRepository { maven("https://oss.sonatype.org/content/repositories/snapshots/") }
|
||||||
filter { includeGroup("dev.msfjarvis.whetstone") }
|
filter { includeGroup("dev.msfjarvis.whetstone") }
|
||||||
}
|
}
|
||||||
|
exclusiveContent {
|
||||||
|
forRepository { maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") }
|
||||||
|
filter { includeGroup("com.squareup.anvil") }
|
||||||
|
}
|
||||||
includeBuild("build-logic")
|
includeBuild("build-logic")
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
@ -59,7 +63,6 @@ dependencyResolutionManagement {
|
||||||
includeGroup("androidx.collection")
|
includeGroup("androidx.collection")
|
||||||
includeGroup("androidx.compose")
|
includeGroup("androidx.compose")
|
||||||
includeGroup("androidx.compose.animation")
|
includeGroup("androidx.compose.animation")
|
||||||
includeGroup("androidx.compose.compiler")
|
|
||||||
includeGroup("androidx.compose.foundation")
|
includeGroup("androidx.compose.foundation")
|
||||||
includeGroup("androidx.compose.material")
|
includeGroup("androidx.compose.material")
|
||||||
includeGroup("androidx.compose.material3")
|
includeGroup("androidx.compose.material3")
|
||||||
|
@ -113,6 +116,14 @@ dependencyResolutionManagement {
|
||||||
forRepository { maven("https://oss.sonatype.org/content/repositories/snapshots/") }
|
forRepository { maven("https://oss.sonatype.org/content/repositories/snapshots/") }
|
||||||
filter { includeGroup("dev.msfjarvis.whetstone") }
|
filter { includeGroup("dev.msfjarvis.whetstone") }
|
||||||
}
|
}
|
||||||
|
exclusiveContent {
|
||||||
|
forRepository { maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") }
|
||||||
|
filter { includeGroup("com.squareup.anvil") }
|
||||||
|
}
|
||||||
|
exclusiveContent {
|
||||||
|
forRepository { maven("https://androidx.dev/storage/compose-compiler/repository/") }
|
||||||
|
filter { includeGroup("androidx.compose.compiler") }
|
||||||
|
}
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue