com.chmyaf.gradle.plugin.doxygen
Owner: Andrey S Teplitskiy
Doxygen API documentation generator
Sources: https://github.com/chmyaf/gradle-plugin-doxygen
Version 1.3.1 (latest)
1.3.1
Created 11 July 2019.
Doxygen API documentation generator
Using the plugins DSL:
plugins {
id("com.chmyaf.gradle.plugin.doxygen") version "1.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.chmyaf.gradle.plugin:doxygen:1.3.1")
}
}
apply(plugin = "com.chmyaf.gradle.plugin.doxygen")
Using the plugins DSL:
plugins {
id "com.chmyaf.gradle.plugin.doxygen" version "1.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.chmyaf.gradle.plugin:doxygen:1.3.1"
}
}
apply plugin: "com.chmyaf.gradle.plugin.doxygen"