Search Gradle plugins

Version 0.2.0 (latest)

Created 24 December 2019.

static site generator based on gradle, thymeleaf and asciidoctor

Using the plugins DSL:

plugins {
  id("io.github.mxab.gram") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.mxab.gram:gram:0.2.0")
  }
}

apply(plugin = "io.github.mxab.gram")

Using the plugins DSL:

plugins {
  id "io.github.mxab.gram" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.mxab.gram:gram:0.2.0"
  }
}

apply plugin: "io.github.mxab.gram"

Learn how to apply plugins to subprojects