Document system requirements to use Lagom's protobuf tasks
See original GitHub issueLagom’s build includes some protobuf compilation tasks and settings. The requirements to run these tasks successfully are undocumented.
(at least) the following are necessary:
protoc
of the correct version in thePATH
- more?
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Overview | Protocol Buffers - Google Developers
You can use protocol buffers across projects by defining message types in .proto files that reside outside of a specific project's code base ......
Read more >How to Use Google's Protocol Buffers in Python
The initial purpose of Protocol Buffers was to simplify the work with request/response protocols. Before ProtoBuf, Google used a different ...
Read more >simple protobuf compilation with gradle - Stack Overflow
I'm having hard time with gradle and protobuf, i want to create a simple gradle project that will take any proto files from...
Read more >Create Protobuf messages for .NET apps - Microsoft Learn
NET apps should follow the Protobuf style guidelines. ... To use them, import wrappers.proto into your .proto file, like the following code:.
Read more >Vultr api - MilanoIngegneria
Protocol buffers ); but gRPC also offers SSL/TLS integration which can be used to ... Oct 09, 2020 · Using Cloud-init To Configure...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ignasi35 To be clear, using
sbt-protobuf
andprotoc-jar
aren’t mutually exclusive. In fact, I think they’re quite complementary.sbt-protobuf
simplifies generating sources given .proto files and an arbitraryprotoc
implementation;protoc-jar
provides aprotoc
implementation.By combining them, there’s no long a strict dependency that
protoc
is installed on a machine.Until we change how to run
protoc
fromsbt
, the steps required are:protoc
locally and setup thePATH
(see comments above for details wrt versions)sbt ;protobufGenerate;javafmt