Skip to content

Commit

Permalink
Update to bazel 6.3.2 to fix kotlin rules compatibility issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
brettchabot authored and jamesward committed Sep 25, 2023
1 parent 6824700 commit 95a1ad2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.1.0
6.3.2
2 changes: 1 addition & 1 deletion compiler/src/test/proto/helloworld/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package(default_visibility = ["//compiler/src/test:__subpackages__"])
proto_library(
name = "hello_world_proto",
srcs = ["helloworld.proto"],
strip_import_prefix = "//compiler/src/test/proto",
strip_import_prefix = "/compiler/src/test/proto",
)

java_proto_library(
Expand Down
18 changes: 9 additions & 9 deletions compiler/src/test/proto/testing/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package(default_visibility = ["//compiler/src/test:__subpackages__"])
proto_library(
name = "example3_proto",
srcs = ["example3.proto"],
strip_import_prefix = "//compiler/src/test/proto",
strip_import_prefix = "/compiler/src/test/proto",
deps = ["@com_google_protobuf//:wrappers_proto"],
)

Expand All @@ -21,7 +21,7 @@ java_proto_library(
proto_library(
name = "has_explicit_outer_class_name_proto",
srcs = ["has_explicit_outer_class_name.proto"],
strip_import_prefix = "//compiler/src/test/proto",
strip_import_prefix = "/compiler/src/test/proto",
)

java_proto_library(
Expand All @@ -32,7 +32,7 @@ java_proto_library(
proto_library(
name = "has_nested_class_name_conflict_proto",
srcs = ["has_nested_class_name_conflict.proto"],
strip_import_prefix = "//compiler/src/test/proto",
strip_import_prefix = "/compiler/src/test/proto",
)

java_proto_library(
Expand All @@ -43,7 +43,7 @@ java_proto_library(
proto_library(
name = "has_outer_class_name_conflict_proto",
srcs = ["has_outer_class_name_conflict.proto"],
strip_import_prefix = "//compiler/src/test/proto",
strip_import_prefix = "/compiler/src/test/proto",
)

java_proto_library(
Expand All @@ -54,7 +54,7 @@ java_proto_library(
proto_library(
name = "implicit_java_package_proto",
srcs = ["implicit_java_package.proto"],
strip_import_prefix = "//compiler/src/test/proto",
strip_import_prefix = "/compiler/src/test/proto",
)

java_proto_library(
Expand All @@ -65,7 +65,7 @@ java_proto_library(
proto_library(
name = "proto-file-with-hyphen_proto",
srcs = ["proto-file-with-hyphen.proto"],
strip_import_prefix = "//compiler/src/test/proto",
strip_import_prefix = "/compiler/src/test/proto",
)

java_proto_library(
Expand All @@ -76,7 +76,7 @@ java_proto_library(
proto_library(
name = "service_name_conflicts_with_file_proto",
srcs = ["service_name_conflicts_with_file.proto"],
strip_import_prefix = "//compiler/src/test/proto",
strip_import_prefix = "/compiler/src/test/proto",
)

java_proto_library(
Expand All @@ -87,7 +87,7 @@ java_proto_library(
proto_library(
name = "service_t_proto",
srcs = ["serviceT.proto"],
strip_import_prefix = "//compiler/src/test/proto",
strip_import_prefix = "/compiler/src/test/proto",
)

java_proto_library(
Expand All @@ -98,7 +98,7 @@ java_proto_library(
proto_library(
name = "test_proto3_optional",
srcs = ["test_proto3_optional.proto"],
strip_import_prefix = "//compiler/src/test/proto",
strip_import_prefix = "/compiler/src/test/proto",
)

java_proto_library(
Expand Down

0 comments on commit 95a1ad2

Please sign in to comment.