Search Gradle plugins

Version 1.1.9 (latest)

Created 03 August 2022.

Docs plugin to support the documentation of a project

Using the plugins DSL:

plugins {
  id("net.mayope.docs-gradle-plugin") version "1.1.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.mayope:docs-gradle-plugin:1.1.9")
  }
}

apply(plugin = "net.mayope.docs-gradle-plugin")

Using the plugins DSL:

plugins {
  id "net.mayope.docs-gradle-plugin" version "1.1.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.mayope:docs-gradle-plugin:1.1.9"
  }
}

apply plugin: "net.mayope.docs-gradle-plugin"

Learn how to apply plugins to subprojects