Update Gradle version and related plugin configurations (#1726)

This commit is contained in:
Valeri Gokadze 2025-01-08 20:37:23 +04:00 committed by GitHub
parent 29b4602497
commit a56f74414c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 8 deletions

View file

@ -9,7 +9,7 @@ coreSplashscreen = "1.0.1"
customactivityoncrash = "2.4.0" customactivityoncrash = "2.4.0"
fadingedgelayout = "1.0.0" fadingedgelayout = "1.0.0"
google_featureDelivery_version = "2.1.0" google_featureDelivery_version = "2.1.0"
gradle = "8.7.1" gradle = "8.7.3"
dhaval2404_imagepicker_version = "2.1" dhaval2404_imagepicker_version = "2.1"
chrisbanes_insetter_version = "0.6.1" chrisbanes_insetter_version = "0.6.1"
jaudiotagger = "2.3.15" jaudiotagger = "2.3.15"

View file

@ -1,6 +1,5 @@
#Mon Mar 06 21:09:43 IST 2023
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

View file

@ -1,12 +1,12 @@
// https://docs.gradle.com/enterprise/gradle-plugin/
plugins { plugins {
id "com.gradle.enterprise" version "3.10.3" id "com.gradle.develocity" version "3.19"
} }
gradleEnterprise { develocity {
buildScan { buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service" termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
termsOfServiceAgree = "yes" termsOfUseAgree.set("yes")
publishing.onlyIf { false }
} }
} }