Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions rules/scala.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ _compile_attributes = {
"-src.jar",
],
flags = ["DIRECT_COMPILE_TIME_INPUT"],
mandatory = True,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any specific reason for this change?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

),
"data": attr.label_list(
cfg = _scala_outgoing_transition,
Expand Down
2 changes: 2 additions & 0 deletions src/main/scala/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ register_zinc_toolchain(
# IntelliJ libraries, so we can get a Scala SDK on sync.
scala_library(
name = "scala-sdk",
srcs = [],
deps_used_whitelist = compiler_classpath_2_13,
scala_toolchain_name = "annex_zinc_3",
deps = compiler_classpath_2_13,
Expand All @@ -69,6 +70,7 @@ runtime_classpath_3 = [

scala_library(
name = "scala-sdk-3",
srcs = [],
deps_used_whitelist = compiler_classpath_3,
scala_toolchain_name = "annex_zinc_3",
deps = compiler_classpath_3,
Expand Down
Loading