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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Ignore Gradle project-specific cache directory
.gradle
# Ignore Kotlin project-specific cache directory
.kotlin

# Ignore Gradle build output directory
build
Expand Down
1 change: 0 additions & 1 deletion buildlogic/src/main/kotlin/androidx/build/BundlePlugin.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ class BundlePlugin : Plugin<Project> {
override fun apply(project: Project) {
val bundleInside = project.configurations.create("bundleInside") {
it.isTransitive = false
it.isVisible = false
it.isCanBeResolved = true
}
project.afterEvaluate {
Expand Down
6 changes: 6 additions & 0 deletions gcpbuildcache/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
*
*/

import org.jetbrains.kotlin.gradle.dsl.KotlinVersion

plugins {
id("maven-publish")
id("signing")
Expand All @@ -39,6 +41,10 @@ kotlin {
jvmToolchain {
jvmToolchain(17)
}
compilerOptions {
languageVersion.set(KotlinVersion.KOTLIN_2_0)
}
coreLibrariesVersion = "2.0.0"
}

gradlePlugin {
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[versions]
gradle-publish = "1.3.0"
kotlin = "2.0.21"
kotlin = "2.2.20"
amazon-bom = "2.25.0"
google-cloud-storage = "2.30.1"
google-cloud-storage = "2.57.0"
s3-mock = "2.11.0"
retrofit = "2.9.0"
gson = "2.10.1"
Expand Down
Loading
Loading