Search Gradle plugins

Version 2.5.0

Created 27 August 2016.

documentation (README) generator for projects in both markdown and asciidoc - this utilises the templar templating language

Using the plugins DSL:

plugins {
  id("synapticloop.documentr") version "2.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.synapticloop:documentr:2.5.0")
  }
}

apply(plugin = "synapticloop.documentr")

Using the plugins DSL:

plugins {
  id "synapticloop.documentr" version "2.5.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.synapticloop:documentr:2.5.0"
  }
}

apply plugin: "synapticloop.documentr"

Learn how to apply plugins to subprojects