Skip to content

Commit 95a1ad2

Browse files
brettchabotjamesward
authored andcommitted
Update to bazel 6.3.2 to fix kotlin rules compatibility issues.
1 parent 6824700 commit 95a1ad2

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.bazelversion

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.0
1+
6.3.2

compiler/src/test/proto/helloworld/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package(default_visibility = ["//compiler/src/test:__subpackages__"])
99
proto_library(
1010
name = "hello_world_proto",
1111
srcs = ["helloworld.proto"],
12-
strip_import_prefix = "//compiler/src/test/proto",
12+
strip_import_prefix = "/compiler/src/test/proto",
1313
)
1414

1515
java_proto_library(

compiler/src/test/proto/testing/BUILD.bazel

+9-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package(default_visibility = ["//compiler/src/test:__subpackages__"])
99
proto_library(
1010
name = "example3_proto",
1111
srcs = ["example3.proto"],
12-
strip_import_prefix = "//compiler/src/test/proto",
12+
strip_import_prefix = "/compiler/src/test/proto",
1313
deps = ["@com_google_protobuf//:wrappers_proto"],
1414
)
1515

@@ -21,7 +21,7 @@ java_proto_library(
2121
proto_library(
2222
name = "has_explicit_outer_class_name_proto",
2323
srcs = ["has_explicit_outer_class_name.proto"],
24-
strip_import_prefix = "//compiler/src/test/proto",
24+
strip_import_prefix = "/compiler/src/test/proto",
2525
)
2626

2727
java_proto_library(
@@ -32,7 +32,7 @@ java_proto_library(
3232
proto_library(
3333
name = "has_nested_class_name_conflict_proto",
3434
srcs = ["has_nested_class_name_conflict.proto"],
35-
strip_import_prefix = "//compiler/src/test/proto",
35+
strip_import_prefix = "/compiler/src/test/proto",
3636
)
3737

3838
java_proto_library(
@@ -43,7 +43,7 @@ java_proto_library(
4343
proto_library(
4444
name = "has_outer_class_name_conflict_proto",
4545
srcs = ["has_outer_class_name_conflict.proto"],
46-
strip_import_prefix = "//compiler/src/test/proto",
46+
strip_import_prefix = "/compiler/src/test/proto",
4747
)
4848

4949
java_proto_library(
@@ -54,7 +54,7 @@ java_proto_library(
5454
proto_library(
5555
name = "implicit_java_package_proto",
5656
srcs = ["implicit_java_package.proto"],
57-
strip_import_prefix = "//compiler/src/test/proto",
57+
strip_import_prefix = "/compiler/src/test/proto",
5858
)
5959

6060
java_proto_library(
@@ -65,7 +65,7 @@ java_proto_library(
6565
proto_library(
6666
name = "proto-file-with-hyphen_proto",
6767
srcs = ["proto-file-with-hyphen.proto"],
68-
strip_import_prefix = "//compiler/src/test/proto",
68+
strip_import_prefix = "/compiler/src/test/proto",
6969
)
7070

7171
java_proto_library(
@@ -76,7 +76,7 @@ java_proto_library(
7676
proto_library(
7777
name = "service_name_conflicts_with_file_proto",
7878
srcs = ["service_name_conflicts_with_file.proto"],
79-
strip_import_prefix = "//compiler/src/test/proto",
79+
strip_import_prefix = "/compiler/src/test/proto",
8080
)
8181

8282
java_proto_library(
@@ -87,7 +87,7 @@ java_proto_library(
8787
proto_library(
8888
name = "service_t_proto",
8989
srcs = ["serviceT.proto"],
90-
strip_import_prefix = "//compiler/src/test/proto",
90+
strip_import_prefix = "/compiler/src/test/proto",
9191
)
9292

9393
java_proto_library(
@@ -98,7 +98,7 @@ java_proto_library(
9898
proto_library(
9999
name = "test_proto3_optional",
100100
srcs = ["test_proto3_optional.proto"],
101-
strip_import_prefix = "//compiler/src/test/proto",
101+
strip_import_prefix = "/compiler/src/test/proto",
102102
)
103103

104104
java_proto_library(

0 commit comments

Comments
 (0)