p

protoc

Protobuf Compiler (protoc) is a compiler for .proto files. It generates language-specific code for Protobuf messages and RPC interfaces.
https://developers.google.com/protocol-buffers/
BSD-3-Clause
Files download
File Operation
protoc-3.24.0-RC1.pom download
Apache Maven
<dependency>
  <groupId>com.google.protobuf</groupId>
  <artifactId>protoc</artifactId>
  <version>3.24.0-RC1</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'com.google.protobuf:protoc:3.24.0-RC1'
Gradle Kotlin
implementation("com.google.protobuf:protoc:3.24.0-RC1")
Scala SBT
libraryDependencies += "com.google.protobuf" % "protoc" % "3.24.0-RC1"
Groovy Grape
@Grapes(
  @Grab(group='com.google.protobuf', module='protoc', version='3.24.0-RC1')
)
Apache Ivy
<dependency org="com.google.protobuf" name="protoc" rev="3.24.0-RC1" />
Leiningen
[com.google.protobuf/protoc "3.24.0-RC1"]
Apache Buildr
'com.google.protobuf:protoc:jar:3.24.0-RC1'