The Gradle Site Plugin provides helpful tools and shared configuration used to create and manage a project website and to aid with other project-related documentation.
Build script snippet for use in all Gradle versions:
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"
Build script snippet for new, incubating, plugin mechanism introduced in Gradle 2.1:
plugins {
id "com.stehno.gradle.site" version "0.0.3"
}
See the User Guide for configuration and usage information.