Search Gradle plugins

Version 0.1 (latest)

Created 28 July 2020.

Generates the README.md using a Thymeleaf template.

Using the plugins DSL:

plugins {
  id("com.github.simkuenzi.readme") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.simkuenzi:gradle-readme-plugin:0.1")
  }
}

apply(plugin = "com.github.simkuenzi.readme")

Using the plugins DSL:

plugins {
  id "com.github.simkuenzi.readme" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.simkuenzi:gradle-readme-plugin:0.1"
  }
}

apply plugin: "com.github.simkuenzi.readme"

Learn how to apply plugins to subprojects