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.3.0-dev1

Created 28 May 2021.

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.3.0-dev1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.jetbrains.kotlinx.knit:org.jetbrains.kotlinx.knit.gradle.plugin:0.3.0-dev1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.jetbrains.kotlinx.knit")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.kotlinx.knit:org.jetbrains.kotlinx.knit.gradle.plugin:0.3.0-dev1")
      }
    }
    
    apply(plugin = "org.jetbrains.kotlinx.knit")
  • Applying plugins to all subprojects .