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