搜索Gradle插件

版本 0.1 (最新版)

0.1

创建于 2018年10月4日。

简化使用GRPC和kotlin的插件

使用插件DSL

plugins {
  id("com.github.mikhailstepanov88.grpc-kotlin") version "0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.mikhailstepanov88:grpc_kotlin:0.1")
  }
}

apply(plugin = "com.github.mikhailstepanov88.grpc-kotlin")

使用插件DSL

plugins {
  id "com.github.mikhailstepanov88.grpc-kotlin" version "0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.mikhailstepanov88:grpc_kotlin:0.1"
  }
}

apply plugin: "com.github.mikhailstepanov88.grpc-kotlin"

了解如何将插件应用于子项目