搜索Gradle插件

io.github.devcrocod.korro

所有者: Pavel Gorgulov

将Kotlin代码片段插入MD文档中,从源示例文件和测试中。

https://github.com/devcrocod/korro

来源: https://github.com/devcrocod/korro

使用插件DSL

plugins {
  id("io.github.devcrocod.korro") version "0.1.6"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.devcrocod:korro:0.1.6")
  }
}

apply(plugin = "io.github.devcrocod.korro")

使用插件DSL

plugins {
  id "io.github.devcrocod.korro" version "0.1.6"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.devcrocod:korro:0.1.6"
  }
}

apply plugin: "io.github.devcrocod.korro"

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