搜索Gradle插件

版本 0.12.0(最新版)

0.12.0

创建于 2022年8月23日。

Kotlin Native 悬挂函数/Flow 包装器 - gradle 插件

使用 plugins DSL

plugins {
  id("com.futuremind.koru") version "0.12.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.futuremind:koru-compiler-plugin:0.12.0")
  }
}

apply(plugin = "com.futuremind.koru")

使用 plugins DSL

plugins {
  id "com.futuremind.koru" version "0.12.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.futuremind:koru-compiler-plugin:0.12.0"
  }
}

apply plugin: "com.futuremind.koru"

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