gradle-protobuf-plugin alternatives and similar packages
Based on the "Gradle" category.
Alternatively, view gradle-protobuf-plugin alternatives based on common mentions on social networks and blogs.
-
gradle-play-publisher
GPP is Android's unofficial release automation Gradle Plugin. It can do anything from building, uploading, and then promoting your App Bundle or APK to publishing app listings and other metadata. -
dexcount-gradle-plugin
A Gradle plugin to report the number of method references in your APK on every build. -
groovy-android-gradle-plugin
A Gradle plugin to support the Groovy language for building Android apps -
Easylauncher gradle plugin for Android
Add a different ribbon to each of your Android app variants using this gradle plugin. Of course, configure it as you will -
gradle-android-scala-plugin
gradle-android-scala-plugin adds scala language support to official gradle android plugin -
GradleMavenPush
Helper to upload Gradle Android Artifacts, Gradle Java Artifacts and Gradle Kotlin Artifacts to Maven repositories (JCenter, Maven Central, Corporate staging/snapshot servers and local Maven repositories). -
EasyDokkaPlugin
Gradle Script plugin to generate documentation by Dokka documentation engine in Javadoc or other formats for Java, Kotlin, Android and non-Android projects. It's very easy, you don't need to add to dependencies section additional classpath or think about compatibility issues, you don't need additional repositories also.
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of gradle-protobuf-plugin or a related project?
README
Gradle Protobuf Plugin
- Author: Andrew Kroh
- Download: See maven central
- License: Apache License, Version 2.0
- Requirements: Java 1.5+
- Google Protocol Buffer Compiler (protoc): Any version
What is it?
This is a plugin for Gradle that enables compiling Google Protocol Buffer .proto files into data access classes. It generates Java, CPP, and Python source files from the .proto files in src/main/proto.
This plugin adds a dependency on the Java plugin so that it can compile the generated Java source files.
This plugin generates a sources jar that contains all of the Java sources (including those generated from the .proto files) in this project.
The Protocol Buffer compiler must be on the path for the plugin to work. If the protocol buffer is in a different location then specify the full path to the compiler in your build.gradle file using protobuf.compiler = '/full/path/protoc'.
Usage
apply plugin: 'protobuf'
The plugin JAR needs to be defined in the classpath of your build script. It is available from maven central.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.andrewkroh.gradle:gradle-protobuf-plugin:0.5.0'
}
}
The plugin automatically adds a dependency on the google protobuf jars so all you need to do is specify what repository(s) to use.
repositories {
mavenCentral()
}
Project Layout
Simply put your .proto files in src/main/proto
.
Tasks
The protobuf plugin defines the following task:
compileProto
- Generates source files by compiling .proto files.
Extensions
The protobuf plugin adds a protobuf
extension to the project which allows you to override the default configuration of the plugin.
version
- Protocol Buffers version that your project requires. By specifying this value the plugin will verify that it is using specified version of the compiler.src
- Source directory for your .proto files. The value is relative to the project root.compiler
- Name (or full path) of the Google Protocol Buffer compiler that the plugin will execute.outputCpp
- Output directory for generated CPP source files. The value is relative to the project build directory.outputJava
- Output directory for generated java source files. The value is relative to the project build directory.outputPython
- Output directory for generated python source files. The value is relative to the project build directory.outputToProjectDir
- Output generated files relative to project root directory instead of relative to build directory. Defaults to false.autoDependency
- Activate or deactivate automatic dependency creation. If true, a compile time dependency oncom.google.protobuf:protobuf-java
is added automatically based on the Protocol Buffers version number. Defaults to true.
Example
See the example directory in this repository.
*Note that all licence references and agreements mentioned in the gradle-protobuf-plugin README section above
are relevant to that project's source code only.