We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45ea551 commit 935ca0bCopy full SHA for 935ca0b
workspace-import/test/BUILD.bazel
@@ -1,7 +1,13 @@
1
### auto-generated section `build language-server.project-import.test` start
2
+load("@community//build:compiler-options.bzl", "create_kotlinc_options")
3
load("@rules_java//java:defs.bzl", "java_library")
4
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_test")
5
6
+create_kotlinc_options(
7
+ name = "custom",
8
+ context_receivers = True
9
+)
10
+
11
java_library(
12
name = "test",
13
visibility = ["//visibility:public"]
@@ -11,6 +17,7 @@ jvm_library(
17
name = "test_test_lib",
18
visibility = ["//visibility:public"],
19
srcs = glob(["test/**/*.kt", "test/**/*.java"], allow_empty = True),
20
+ kotlinc_opts = ":custom",
14
21
deps = [
15
22
"@lib//:kotlin-stdlib",
16
23
"@lib//:junit5",
0 commit comments