From 044387a235f61fb0490e6b329c77e5ef22bf018f Mon Sep 17 00:00:00 2001 From: Peter Lobsinger Date: Mon, 8 Jan 2024 20:09:47 -0800 Subject: [PATCH] Update name of experimental_prune_transitive_deps flag. After the rename to `rules_kotlin`, the flag `--@io_bazel_rules_kotlin//kotlin/settings:experimental_prune_transitive_deps=True` no longer exists. --- kotlin/settings/BUILD.bazel | 2 +- kotlin/settings/BUILD.release.bazel | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kotlin/settings/BUILD.bazel b/kotlin/settings/BUILD.bazel index 33820b1a0..2c93c1104 100644 --- a/kotlin/settings/BUILD.bazel +++ b/kotlin/settings/BUILD.bazel @@ -30,7 +30,7 @@ bool_flag( ) # Kotlin strict deps can be enabled by setting the following value on the command line -# --@io_bazel_rules_kotlin//kotlin/settings:experimental_prune_transitive_deps=True +# --@rules_kotlin//kotlin/settings:experimental_prune_transitive_deps=True bool_flag( name = "experimental_prune_transitive_deps", build_setting_default = False, diff --git a/kotlin/settings/BUILD.release.bazel b/kotlin/settings/BUILD.release.bazel index cca157bf1..2b9ccb753 100644 --- a/kotlin/settings/BUILD.release.bazel +++ b/kotlin/settings/BUILD.release.bazel @@ -21,7 +21,7 @@ bool_flag( ) # Kotlin strict deps can be enabled by setting the following value on the command line -# --@io_bazel_rules_kotlin//kotlin/settings:experimental_prune_transitive_deps=True +# --@rules_kotlin//kotlin/settings:experimental_prune_transitive_deps=True bool_flag( name = "experimental_prune_transitive_deps", build_setting_default = False,