搜索 Gradle 插件

版本 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"

学习如何将插件应用到子项目中