Search Gradle plugins

com.stehno.gradle.site

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.1

Created 19 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.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.stehno.gradle:site:0.0.1")
  }
}

apply(plugin = "com.stehno.gradle.site")

Using the plugins DSL:

plugins {
  id "com.stehno.gradle.site" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.stehno.gradle:site:0.0.1"
  }
}

apply plugin: "com.stehno.gradle.site"

Learn how to apply plugins to subprojects