Search Gradle plugins

Version 2.9.1

Created 10 April 2017.

A gradle plugin for generating documentation with Enunciate

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.webcohesion.enunciate"

Learn how to apply plugins to subprojects