Search Gradle plugins

Version 0.2.1 (latest)

0.2.1

Created 20 November 2021.

Provide KDoc Elements JAR for the Java Library software components.

Add this plugin to your build using the plugins DSL:

plugins {
  id("xyz.tynn.jvm.kdoc") version "0.2.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.xyz.tynn.buildsrc:elements:0.2.1")
      }
    }
    
    apply(plugin = "xyz.tynn.jvm.kdoc")
  • Applying plugins to all subprojects .