org.curioswitch.gradle-protobuf-plugin
Owner: Choko
A modern protobuf plugin using Gradle's latest features.
https://github.com/curioswitch/curiostack/tree/master/tools/gradle-plugins/gradle-protobuf-plugin
Sources: https://github.com/curioswitch/curiostack.git
Version 0.5.0 (latest)
0.5.0
Created 13 March 2022.
A modern protobuf plugin using Gradle's latest features.
Using the plugins DSL:
plugins {
id("org.curioswitch.gradle-protobuf-plugin") version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.curioswitch.curiostack:gradle-protobuf-plugin:0.5.0")
}
}
apply(plugin = "org.curioswitch.gradle-protobuf-plugin")
Using the plugins DSL:
plugins {
id "org.curioswitch.gradle-protobuf-plugin" version "0.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.curioswitch.curiostack:gradle-protobuf-plugin:0.5.0"
}
}
apply plugin: "org.curioswitch.gradle-protobuf-plugin"