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.8.1
2.8.1
Created 20 March 2017.
A gradle plugin for generating documentation with Enunciate
Using the plugins DSL:
plugins {
id("com.webcohesion.enunciate") version "2.8.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.8.1")
}
}
apply(plugin = "com.webcohesion.enunciate")
Using the plugins DSL:
plugins {
id "com.webcohesion.enunciate" version "2.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.webcohesion.enunciate:enunciate-gradle:2.8.1"
}
}
apply plugin: "com.webcohesion.enunciate"