Search Gradle plugins

io.github.devcrocod.korro

Inserts snippets code of Kotlin into markdown documents from source example files and tests.

https://github.com/devcrocod/korro

Sources: https://github.com/devcrocod/korro

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.devcrocod.korro") version "0.1.1-dev-28"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.devcrocod:korro:0.1.1-dev-28")
      }
    }
    
    apply(plugin = "io.github.devcrocod.korro")
  • Applying plugins to all subprojects .