org.jetbrains.kotlinx.knit
Owner:
Kotlin Team
Produces Kotlin source example files and tests from markdown documents with embedded snippets of Kotlin code
https://github.com/Kotlin/kotlinx-knit
Version 0.4.0 (latest)
Created 11 April 2022.
Produces Kotlin source example files and tests from markdown documents with embedded snippets of Kotlin code
Using the plugins DSL:
plugins {
id("org.jetbrains.kotlinx.knit") version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jetbrains.kotlinx:kotlinx-knit:0.4.0")
}
}
apply(plugin = "org.jetbrains.kotlinx.knit")
Using the plugins DSL:
plugins {
id "org.jetbrains.kotlinx.knit" version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlinx:kotlinx-knit:0.4.0"
}
}
apply plugin: "org.jetbrains.kotlinx.knit"