Search Gradle plugins

Version 2.17.0 (latest)

Created 11 October 2023.

Generate project documentation with Enunciate

Using the plugins DSL:

plugins {
  id("com.webcohesion.enunciate") version "2.17.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.webcohesion.enunciate:enunciate-gradle:2.17.0")
  }
}

apply(plugin = "com.webcohesion.enunciate")

Using the plugins DSL:

plugins {
  id "com.webcohesion.enunciate" version "2.17.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.webcohesion.enunciate:enunciate-gradle:2.17.0"
  }
}

apply plugin: "com.webcohesion.enunciate"

Learn how to apply plugins to subprojects