com.github.mikhailstepanov88.protobuf-kotlin
所有者: 米哈伊尔·斯捷潘诺夫
简化使用 protobuf 和 kotlin 的插件
https://github.com/mikhailstepanov88/protobuf_kotlin
源码:https://github.com/mikhailstepanov88/protobuf_kotlin
版本 0.1(最新版)
0.1
创建日期:2018 年 10 月 4 日。
简化使用 protobuf 和 kotlin 的插件
使用 插件 DSL
plugins {
id("com.github.mikhailstepanov88.protobuf-kotlin") version "0.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.mikhailstepanov88:protobuf_kotlin:0.1")
}
}
apply(plugin = "com.github.mikhailstepanov88.protobuf-kotlin")
使用 插件 DSL
plugins {
id "com.github.mikhailstepanov88.protobuf-kotlin" version "0.1"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.mikhailstepanov88:protobuf_kotlin:0.1"
}
}
apply plugin: "com.github.mikhailstepanov88.protobuf-kotlin"