Search Gradle plugins

io.koalaql.markout

Plugin Support for Markout: an executable documentation platform and Markdown DSL for Kotlin

https://github.com/mfwgenerics/markout

Sources: https://github.com/mfwgenerics/markout.git

Version 0.0.11 (latest)

Created 23 February 2023.

Plugin Support for Markout: an executable documentation platform and Markdown DSL for Kotlin

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.koalaql.markout") version "0.0.11"
}

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("io.koalaql.markout:io.koalaql.markout.gradle.plugin:0.0.11")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.koalaql.markout")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.koalaql.markout:io.koalaql.markout.gradle.plugin:0.0.11")
      }
    }
    
    apply(plugin = "io.koalaql.markout")
  • Applying plugins to all subprojects .