Search Gradle plugins

Version 0.3.5 (latest)

Created 12 April 2024.

KDoc/Javadoc processor Gradle Plugin

Using the plugins DSL:

plugins {
  id("nl.jolanrensen.docProcessor") version "0.3.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("nl.jolanrensen.docProcessor:doc-processor-gradle-plugin:0.3.5")
  }
}

apply(plugin = "nl.jolanrensen.docProcessor")

Using the plugins DSL:

plugins {
  id "nl.jolanrensen.docProcessor" version "0.3.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "nl.jolanrensen.docProcessor:doc-processor-gradle-plugin:0.3.5"
  }
}

apply plugin: "nl.jolanrensen.docProcessor"

Learn how to apply plugins to subprojects