io.logbee.gradle.protobuf.provider
Owner: Elmar Schug
Generating source code from protobuf.
https://github.com/logbee/gradle-protobuf-plugin
Sources: https://github.com/logbee/gradle-protobuf-plugin
Version 0.3.2 (latest)
0.3.2
Created 02 March 2020.
Generating source code from protobuf.
Using the plugins DSL:
plugins {
id("io.logbee.gradle.protobuf.provider") version "0.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.logbee:gradle-protobuf-plugin:0.3.2")
}
}
apply(plugin = "io.logbee.gradle.protobuf.provider")
Using the plugins DSL:
plugins {
id "io.logbee.gradle.protobuf.provider" version "0.3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.logbee:gradle-protobuf-plugin:0.3.2"
}
}
apply plugin: "io.logbee.gradle.protobuf.provider"