Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update to bazel 6.3.2 to fix kotlin rules compatibility issues.
  • Loading branch information
brettchabot authored and jamesward committed Sep 19, 2023
commit a5a7178efddcd0c3677e6e68e1a207c62d0efe8c
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