Skip to content

Commit

Permalink
Update GE Gradle plugin to 3.12.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pshevche committed Mar 2, 2023
1 parent 79929bc commit 4444e86
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build-logic-commons/gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ java {
}

dependencies {
compileOnly("com.gradle:gradle-enterprise-gradle-plugin:3.12.3")
compileOnly("com.gradle:gradle-enterprise-gradle-plugin:3.12.4")

implementation(project(":commons"))
implementation("org.gradle.kotlin.kotlin-dsl:org.gradle.kotlin.kotlin-dsl.gradle.plugin:4.0.6")
Expand Down
2 changes: 1 addition & 1 deletion build-logic/build-platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ val kotlinVersion = providers.gradleProperty("buildKotlinVersion")
dependencies {
constraints {
api("org.gradle.guides:gradle-guides-plugin:0.21")
api("com.gradle:gradle-enterprise-gradle-plugin:3.12.3") // Sync with `settings.gradle.kts`
api("com.gradle:gradle-enterprise-gradle-plugin:3.12.4") // Sync with `settings.gradle.kts`
api("com.gradle.publish:plugin-publish-plugin:1.1.0")
api("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.0.1")
api("me.champeau.gradle:japicmp-gradle-plugin:0.4.1")
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pluginManagement {
}

plugins {
id("com.gradle.enterprise").version("3.12.3") // Sync with `build-logic/build-platform/build.gradle.kts`
id("com.gradle.enterprise").version("3.12.4") // Sync with `build-logic/build-platform/build.gradle.kts`
id("io.github.gradle.gradle-enterprise-conventions-plugin").version("0.7.6")
id("gradlebuild.internal.cc-experiment")
id("org.gradle.toolchains.foojay-resolver-convention") version("0.4.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public final class AutoAppliedGradleEnterprisePlugin {

public static final String GROUP = "com.gradle";
public static final String NAME = "gradle-enterprise-gradle-plugin";
public static final String VERSION = "3.12.3";
public static final String VERSION = "3.12.4";

public static final PluginId ID = new DefaultPluginId("com.gradle.enterprise");
public static final PluginId BUILD_SCAN_PLUGIN_ID = new DefaultPluginId("com.gradle.build-scan");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ class BuildScanPluginSmokeTest extends AbstractSmokeTest {
"3.12",
"3.12.1",
"3.12.2",
"3.12.3"
"3.12.3",
"3.12.4"
]

private static final VersionNumber FIRST_VERSION_SUPPORTING_CONFIGURATION_CACHE = VersionNumber.parse("3.4")
Expand Down

0 comments on commit 4444e86

Please sign in to comment.