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)
0.3.7
Created 22 November 2023.
Generates and applies javadoc patches to source files using javadoctor and spoon
Using the plugins DSL:
plugins {
id("dev.lukebemish.docpatcher") version "0.3.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.lukebemish.docpatcher:docpatcher:0.3.7")
}
}
apply(plugin = "dev.lukebemish.docpatcher")
Using the plugins DSL:
plugins {
id "dev.lukebemish.docpatcher" version "0.3.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.lukebemish.docpatcher:docpatcher:0.3.7"
}
}
apply plugin: "dev.lukebemish.docpatcher"