org.jdrupes.mdoclet
Owner: Michael Lipp
A javadoc doclet that handles Markdown comments
https://github.com/mnlipp/jdrupes-mdoclet
Sources: git@github.com:mnlipp/jdrupes-mdoclet.git
Version 1.0.3-SNAPSHOT
1.0.3-SNAPSHOT
Created 01 March 2017.
A javadoc doclet that handles Markdown comments
Using the plugins DSL:
plugins {
id("org.jdrupes.mdoclet") version "1.0.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.jdrupes.mdoclet:gradle-plugin:1.0.3-SNAPSHOT")
}
}
apply(plugin = "org.jdrupes.mdoclet")
Using the plugins DSL:
plugins {
id "org.jdrupes.mdoclet" version "1.0.3-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.jdrupes.mdoclet:gradle-plugin:1.0.3-SNAPSHOT"
}
}
apply plugin: "org.jdrupes.mdoclet"