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/
New BSD license
Files download
File Operation
protoc-3.2.0-rc.1.pom download
Apache Maven
<dependency>
  <groupId>com.google.protobuf</groupId>
  <artifactId>protoc</artifactId>
  <version>3.2.0-rc.1</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'com.google.protobuf:protoc:3.2.0-rc.1'
Gradle Kotlin
implementation("com.google.protobuf:protoc:3.2.0-rc.1")
Scala SBT
libraryDependencies += "com.google.protobuf" % "protoc" % "3.2.0-rc.1"
Groovy Grape
@Grapes(
  @Grab(group='com.google.protobuf', module='protoc', version='3.2.0-rc.1')
)
Apache Ivy
<dependency org="com.google.protobuf" name="protoc" rev="3.2.0-rc.1" />
Leiningen
[com.google.protobuf/protoc "3.2.0-rc.1"]
Apache Buildr
'com.google.protobuf:protoc:jar:3.2.0-rc.1'