Search Gradle plugins

org.kotools.samples.jvm

Owner: Kotools

Gradle plugin that inlines read-only Kotlin and Java code samples into Dokka documentation, ensuring they are always correct and visible not only online but also in IDEs.

https://github.com/kotools/samples

Sources: https://github.com/kotools/samples

Version 0.1.0-rc (latest)

0.1.0-rc

Created 18 October 2024.

Gradle plugin that inlines read-only Kotlin and Java code samples into Dokka documentation, ensuring they are always correct and visible not only online but also in IDEs.

Using the plugins DSL:

plugins {
  id("org.kotools.samples.jvm") version "0.1.0-rc"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.kotools:samples-jvm:0.1.0-rc")
  }
}

apply(plugin = "org.kotools.samples.jvm")

Using the plugins DSL:

plugins {
  id "org.kotools.samples.jvm" version "0.1.0-rc"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.kotools:samples-jvm:0.1.0-rc"
  }
}

apply plugin: "org.kotools.samples.jvm"

Learn how to apply plugins to subprojects