-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
protobuf-java
dependency, and explicitly declare those deps wit…
…h TODOs for relevant tickets.
- Loading branch information
Showing
4 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
jvm_artifact( | ||
group="com.google.protobuf", | ||
artifact="protobuf-java", | ||
version="3.21.0", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
protobuf_sources(grpc=True) | ||
protobuf_sources( | ||
dependencies=[ | ||
# TODO: The protobuf runtime is not automatically injected as a dependency of protobuf targets. | ||
# see https://github.com/pantsbuild/pants/pull/15006. | ||
"3rdparty/jvm/com/google/protobuf", | ||
], | ||
) |