aboutsummaryrefslogtreecommitdiff
path: root/settings.gradle.kts
diff options
context:
space:
mode:
authorrenovate[bot] <29139614+renovate[bot]@users.noreply.github.com>2023-12-06 19:09:09 +0000
committerGitHub <noreply@github.com>2023-12-06 19:09:09 +0000
commitd9a389a49fb66e89a0377914e270b405dde2d8d9 (patch)
tree107638ee5d5e8d9589b5b94416c4d25874631ca2 /settings.gradle.kts
parent6614e7e176db1470d683e573af1a1f021485d835 (diff)
chore(deps): update dependency androidx.compose.compiler:compiler to v1.5.6 (#2798)
* chore(deps): update dependency androidx.compose.compiler:compiler to v1.5.6 * fix(build): allow Compose Compiler to be sourced gMaven --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'settings.gradle.kts')
-rw-r--r--settings.gradle.kts7
1 files changed, 4 insertions, 3 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts
index 845dc9b4..3110c457 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -87,6 +87,7 @@ dependencyResolutionManagement {
includeGroup("androidx.cardview")
includeGroup("androidx.collection")
includeGroup("androidx.compose.animation")
+ includeGroup("androidx.compose.compiler")
includeGroup("androidx.compose.foundation")
includeGroup("androidx.compose.material")
includeGroup("androidx.compose.material3")
@@ -160,9 +161,9 @@ dependencyResolutionManagement {
forRepository { maven("https://storage.googleapis.com/r8-releases/raw") }
filter { includeModule("com.android.tools", "r8") }
}
- exclusiveContent {
- forRepository { maven("https://androidx.dev/storage/compose-compiler/repository") }
- filter { includeGroup("androidx.compose.compiler") }
+ maven("https://androidx.dev/storage/compose-compiler/repository") {
+ name = "Compose Compiler Snapshots"
+ content { includeGroup("androidx.compose.compiler") }
}
mavenCentral()
}