Search Gradle plugins

Version 1.0.9

Created 05 March 2020.

A plugin for configuring MDoclet (a doclet for Markdown javadoc comments)

Using the plugins DSL:

plugins {
  id("org.jdrupes.mdoclet") version "1.0.9"
}

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.9")
  }
}

apply(plugin = "org.jdrupes.mdoclet")

Using the plugins DSL:

plugins {
  id "org.jdrupes.mdoclet" version "1.0.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.jdrupes.mdoclet:gradle-plugin:1.0.9"
  }
}

apply plugin: "org.jdrupes.mdoclet"

Learn how to apply plugins to subprojects