File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ use_repo(
71
71
"org_springframework_spring_tx" ,
72
72
"org_typelevel__cats_core" ,
73
73
"org_typelevel_kind_projector" ,
74
+ "scala_proto_rules_protoc_bridge" ,
74
75
"scalafmt_default" ,
75
76
)
76
77
Original file line number Diff line number Diff line change @@ -731,6 +731,7 @@ scala_junit_test(
731
731
scala_library (
732
732
name = "TargetWithTestThatShouldNotRun" ,
733
733
srcs = ["src/main/scala/scalarules/test/junit/separate_target/FailingTest.scala" ],
734
+ deps = junit_deps ,
734
735
)
735
736
736
737
scala_library (
@@ -785,6 +786,7 @@ scala_library(
785
786
srcs = [
786
787
"src/main/scala/scalarules/test/junit/runtime_platform/JunitRuntimePlatformTest.java" ,
787
788
],
789
+ deps = junit_deps ,
788
790
# make sure java compilation toolchain matches runtime toolchain ie --target
789
791
java_compile_toolchain = "@bazel_tools//tools/jdk:toolchain_java11" ,
790
792
)
Original file line number Diff line number Diff line change @@ -31,16 +31,14 @@ scala_library(
31
31
srcs = ["DummyGenerator.scala" ],
32
32
deps = [
33
33
"@com_google_protobuf//:protobuf_java" ,
34
+ "@scala_proto_rules_protoc_bridge"
34
35
],
35
36
)
36
37
37
38
declare_deps_provider (
38
39
name = "scalapb_worker_deps_provider" ,
39
40
deps_id = "scalapb_worker_deps" ,
40
- deps = [
41
- ":DummyGenerator" ,
42
- "@com_google_protobuf//:protobuf_java" ,
43
- ],
41
+ deps = [":DummyGenerator" ],
44
42
)
45
43
46
44
scala_proto_deps_toolchain (
@@ -70,15 +68,16 @@ toolchain(
70
68
scala_library (
71
69
name = "FailingGenerator" ,
72
70
srcs = ["FailingGenerator.scala" ],
71
+ deps = [
72
+ "@com_google_protobuf//:protobuf_java" ,
73
+ "@scala_proto_rules_protoc_bridge"
74
+ ],
73
75
)
74
76
75
77
declare_deps_provider (
76
78
name = "failing_scalapb_worker_deps_provider" ,
77
79
deps_id = "scalapb_worker_deps" ,
78
- deps = [
79
- ":FailingGenerator" ,
80
- "@com_google_protobuf//:protobuf_java" ,
81
- ],
80
+ deps = [":FailingGenerator" ],
82
81
)
83
82
84
83
scala_proto_deps_toolchain (
You can’t perform that action at this time.
0 commit comments