bazelbuild / rules_kotlin

Bazel rules for Kotlin
Apache License 2.0
334 stars 211 forks source link

Fix stardoc breakage in bazel @ HEAD #1190

Closed restingbull closed 4 months ago

restingbull commented 4 months ago

bazel @ head has an added dependency @rule_java_builtin java_common that is not satisfiable via import the built-in bazel srcs.

The simplest solution it to stop using the toolchain utilities, and resolve the toolchains in a backwards compatible manner.

Still a potential problem in third_party, as it will pick up toolchain_utils from bazel_tools -- unfortunately, the filegroup that won't pull in the toolchain_utils is private. :/

fixes: #1180