Search Gradle plugins

org.jetbrains.kotlinx.knit

Produces Kotlin source example files and tests from markdown documents with embedded snippets of Kotlin code

https://github.com/Kotlin/kotlinx-knit

Sources: https://github.com/Kotlin/kotlinx-knit

Version 0.4.0

0.4.0

Created 11 April 2022.

Produces Kotlin source example files and tests from markdown documents with embedded snippets of Kotlin code

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jetbrains.kotlinx.knit") version "0.4.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.kotlinx:kotlinx-knit:0.4.0")
      }
    }
    
    apply(plugin = "org.jetbrains.kotlinx.knit")
  • Applying plugins to all subprojects .