nl.jolanrensen.docProcessor
Owner: Jolan Rensen
KDoc/Javadoc processor Gradle Plugin
https://github.com/Jolanrensen/KoDEx
Sources: https://github.com/Jolanrensen/docProcessorGradlePlugin
Version 0.4.1
Created 10 January 2025.
Deprecated: Will be deprecated in favor of nl.jolanrensen.kodex
Add this plugin to your build using the plugins DSL:
plugins {
id("nl.jolanrensen.docProcessor") version "0.4.1"
}
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("nl.jolanrensen.docProcessor:nl.jolanrensen.docProcessor.gradle.plugin:0.4.1") }
It can then be applied in the precompiled script plugin:plugins { id("nl.jolanrensen.docProcessor") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("nl.jolanrensen.docProcessor:nl.jolanrensen.docProcessor.gradle.plugin:0.4.1") } } apply(plugin = "nl.jolanrensen.docProcessor")
- Applying plugins to all subprojects .