Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 2fcaafe

Browse files
committed
Merge branch 'refs/heads/trunk' into compose-migration
2 parents e478df0 + 4feb288 commit 2fcaafe

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ srl = "2.1.0"
1818
android-application = { id = "com.android.application", version.ref = "agp" }
1919
android-library = { id = "com.android.library", version.ref = "agp" }
2020
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
21-
ksp = "com.google.devtools.ksp:1.9.23-1.0.19"
21+
ksp = "com.google.devtools.ksp:1.9.23-1.0.20"
2222
napt = "com.sergei-lapin.napt:1.19"
2323
spotless = "com.diffplug.spotless:6.25.0"
2424
detekt = "io.gitlab.arturbosch.detekt:1.23.6"
@@ -29,7 +29,7 @@ kotlin-junit5 = { module = "org.jetbrains.kotlin:kotlin-test-junit5", version.re
2929
kotlinX-coroutines = "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0"
3030
kotlinX-immutable = "org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.7"
3131

32-
androidX-compose-bom = "androidx.compose:compose-bom:2024.03.00"
32+
androidX-compose-bom = "androidx.compose:compose-bom:2024.04.00"
3333
androidX-compose-ui = { module = "androidx.compose.ui:ui" }
3434
androidX-compose-tooling = { module = "androidx.compose.ui:ui-tooling" }
3535
androidX-compose-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview" }

settings.gradle.kts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,16 @@ dependencyResolutionManagement {
2424
}
2525

2626
plugins {
27-
id("com.gradle.enterprise") version "3.16.2"
27+
id("com.gradle.develocity") version "3.17"
2828
}
2929

30-
gradleEnterprise {
30+
develocity {
3131
buildScan {
32-
termsOfServiceUrl = "https://gradle.com/terms-of-service"
33-
termsOfServiceAgree = "yes"
34-
publishAlways()
32+
termsOfUseUrl = "https://gradle.com/terms-of-service"
33+
termsOfUseAgree = "yes"
34+
// TODO: workaround for https://github.com/gradle/gradle/issues/22879.
35+
val isCI = providers.environmentVariable("CI").isPresent
36+
publishing.onlyIf { isCI }
3537
}
3638
}
3739

0 commit comments

Comments
 (0)