dev.lukebemish.docpatcher
Owner: Luke Bemish
Generates and applies javadoc patches to source files using javadoctor and spoon
https://github.com/lukebemishprojects/DocPatcher
Sources: https://github.com/lukebemishprojects/DocPatcher.git
Version 0.3.7 (latest)
Created 22 November 2023.
Generates and applies javadoc patches to source files using javadoctor and spoon
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.lukebemish.docpatcher") version "0.3.7"
}
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("dev.lukebemish.docpatcher:dev.lukebemish.docpatcher.gradle.plugin:0.3.7") }
It can then be applied in the precompiled script plugin:plugins { id("dev.lukebemish.docpatcher") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.lukebemish.docpatcher:dev.lukebemish.docpatcher.gradle.plugin:0.3.7") } } apply(plugin = "dev.lukebemish.docpatcher")
- Applying plugins to all subprojects .