Search Gradle plugins

Version 1.0.10 (latest)

Created 30 May 2020.

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

Using the plugins DSL:

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

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.jdrupes.mdoclet"

Learn how to apply plugins to subprojects