Skip to content

Commit 5a26a92

Browse files
committedMay 2, 2024··
Fix deprecation warnings::
1 parent 906bddd commit 5a26a92

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed
 

‎.editorconfig

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ktlint_standard_property-naming = disabled
1313
ktlint_class_signature_rule_force_multiline_when_parameter_count_greater_or_equal_than = 2
1414
ktlint_function_naming_ignore_when_annotated_with = Composable
1515
ktlint_compose_unstable-collections = disabled
16+
ktlint_standard_kdoc = disabled
1617

1718
[*.xml]
1819
indent_size = 4

‎gradle/wrapper/gradle-wrapper.jar

-9 Bytes
Binary file not shown.

‎settings.gradle

+7-4
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ pluginManagement {
1010

1111
plugins {
1212
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
13-
id "com.gradle.enterprise" version "3.17.2"
13+
id "com.gradle.develocity" version "3.17.2"
1414
}
1515

16-
gradleEnterprise {
16+
develocity {
1717
buildScan {
18-
termsOfServiceUrl = "https://gradle.com/terms-of-service"
19-
termsOfServiceAgree = "yes"
18+
termsOfUseUrl = "https://gradle.com/terms-of-service"
19+
termsOfUseAgree = "yes"
20+
21+
uploadInBackground = System.getenv("CI") == null
22+
publishing { onlyIf { false } }
2023
}
2124
}
2225

0 commit comments

Comments
 (0)
Please sign in to comment.