Skip to content

Commit 31c97fa

Browse files
committed
Upgrade Gradle to 9.1.0, KGP to 2.2.0, Google cloud storage to 2.57.0
1 parent b7902a3 commit 31c97fa

File tree

11 files changed

+221
-149
lines changed

11 files changed

+221
-149
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Ignore Gradle project-specific cache directory
22
.gradle
3+
# Ignore Kotlin project-specific cache directory
4+
.kotlin
35

46
# Ignore Gradle build output directory
57
build

buildlogic/src/main/kotlin/androidx/build/BundlePlugin.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ class BundlePlugin : Plugin<Project> {
2626
override fun apply(project: Project) {
2727
val bundleInside = project.configurations.create("bundleInside") {
2828
it.isTransitive = false
29-
it.isVisible = false
3029
it.isCanBeResolved = true
3130
}
3231
project.afterEvaluate {

gcpbuildcache/build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
*
1616
*/
1717

18+
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
19+
1820
plugins {
1921
id("maven-publish")
2022
id("signing")
@@ -39,6 +41,10 @@ kotlin {
3941
jvmToolchain {
4042
jvmToolchain(17)
4143
}
44+
compilerOptions {
45+
languageVersion.set(KotlinVersion.KOTLIN_2_0)
46+
}
47+
coreLibrariesVersion = "2.0.0"
4248
}
4349

4450
gradlePlugin {

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[versions]
22
gradle-publish = "1.3.0"
3-
kotlin = "2.0.21"
3+
kotlin = "2.2.20"
44
amazon-bom = "2.25.0"
5-
google-cloud-storage = "2.30.1"
5+
google-cloud-storage = "2.57.0"
66
s3-mock = "2.11.0"
77
retrofit = "2.9.0"
88
gson = "2.10.1"

0 commit comments

Comments
 (0)