From 2924b8ebab7d3e6006692db4676c5b35a279e994 Mon Sep 17 00:00:00 2001 From: Yongshun Shreck Ye Date: Thu, 5 Dec 2024 00:29:47 +0800 Subject: [PATCH] Revert `pluginProjectSourceDependentStableCommonGradleDependenciesVersion` to the released stable version temporarily so the build can resolve in CI --- buildSrc/src/main/kotlin/VersionsAndDependencies.kt | 5 +++-- buildSrc/src/main/kotlin/conventions.gradle.kts | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/buildSrc/src/main/kotlin/VersionsAndDependencies.kt b/buildSrc/src/main/kotlin/VersionsAndDependencies.kt index 8da7a50..b8e7753 100644 --- a/buildSrc/src/main/kotlin/VersionsAndDependencies.kt +++ b/buildSrc/src/main/kotlin/VersionsAndDependencies.kt @@ -20,6 +20,7 @@ val alignedPluginVersion = "0.9.0-SNAPSHOT" val commonGradleDependenciesVersion = "0.9.0-20241203-SNAPSHOT" // This is the source dependency version. There is another build source dependency in "buildSrc/build.gradle.kts". -val pluginProjectSourceDependentStableCommonGradleDependenciesVersion = "0.9.0-20241203-SNAPSHOT".apply { - //require(!endsWith("SNAPSHOT")) // TODO comment this out when debugging and testing snapshots +// TODO bump this when it's released +val pluginProjectSourceDependentStableCommonGradleDependenciesVersion = "0.8.0-20241016".apply { + require(!endsWith("SNAPSHOT")) // comment this out when debugging and testing snapshots } diff --git a/buildSrc/src/main/kotlin/conventions.gradle.kts b/buildSrc/src/main/kotlin/conventions.gradle.kts index a830671..d7a893e 100644 --- a/buildSrc/src/main/kotlin/conventions.gradle.kts +++ b/buildSrc/src/main/kotlin/conventions.gradle.kts @@ -8,7 +8,7 @@ plugins { } repositories { - mavenLocal() // TODO comment out when not needed + //mavenLocal() // comment out when not needed gradlePluginPortal() }