Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions google-services-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ kotlin {
}

tasks.withType<Test>().configureEach {
javaLauncher = javaToolchains.launcherFor {
// GoogleServicesPluginTest runs test with AGP that requires Java 17
languageVersion = JavaLanguageVersion.of(17)
}
// See GoogleServicesPluginTest.kt -> testResGeneration
dependsOn("publishAllPublicationsToMavenRepository")
systemProperties["plugin_version"] = project.version // value used by GoogleServicesPluginTest.kt
Expand Down
1 change: 1 addition & 0 deletions google-services-plugin/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ org.gradle.jvmargs=-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF
org.gradle.parallel=true

org.gradle.daemon=true
org.gradle.configuration-cache=true
Binary file modified google-services-plugin/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.3-bin.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME

zipStorePath=wrapper/dists
305 changes: 192 additions & 113 deletions google-services-plugin/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading