com.stehno.gradle.site
Owner:
Christopher J. Stehno
Gradle plugin to help create and manage a project documentation site.
http://cjstehno.github.io/gradle-site/
Sources: https://github.com/cjstehno/gradle-site
Version 0.0.3 (latest)
Created 22 March 2017.
Gradle plugin to help create and manage a project documentation site.
Using the plugins DSL:
plugins {
id("com.stehno.gradle.site") version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.stehno.gradle:site:0.0.3")
}
}
apply(plugin = "com.stehno.gradle.site")
Using the plugins DSL:
plugins {
id "com.stehno.gradle.site" version "0.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.stehno.gradle:site:0.0.3"
}
}
apply plugin: "com.stehno.gradle.site"