com.webcohesion.enunciate
Owner: Ryan Heaton
A gradle plugin for generating documentation with Enunciate
http://enunciate.webcohesion.com/
Sources: https://github.com/stoicflame/enunciate-gradle
Version 2.18.0 (latest)
2.18.0
Created 21 June 2024.
Generate project documentation with Enunciate
Using the plugins DSL:
plugins {
id("com.webcohesion.enunciate") version "2.18.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.webcohesion.enunciate:enunciate-gradle:2.18.0")
}
}
apply(plugin = "com.webcohesion.enunciate")
Using the plugins DSL:
plugins {
id "com.webcohesion.enunciate" version "2.18.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.webcohesion.enunciate:enunciate-gradle:2.18.0"
}
}
apply plugin: "com.webcohesion.enunciate"