io.github.krakowski.protodep
Owner: Filip Krakowski
Pulls protobuf service definitions from a specified git repository and compiles them
https://github.com/krakowski/protodep
Sources: https://github.com/krakowski/protodep.git
Version 0.1.1 (latest)
0.1.1
Created 29 July 2019.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Pulls protobuf service definitions from a specified git repository and compiles them
Using the plugins DSL:
plugins {
id("io.github.krakowski.protodep") version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.krakowski:protodep:0.1.1")
}
}
apply(plugin = "io.github.krakowski.protodep")
Using the plugins DSL:
plugins {
id "io.github.krakowski.protodep" version "0.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.krakowski:protodep:0.1.1"
}
}
apply plugin: "io.github.krakowski.protodep"