Search Gradle plugins

Version 1.0.0 (latest)

Created 29 March 2023.

This Gradle plugin creates tasks that fill template files.

Using the plugins DSL:

plugins {
  id("io.github.rkotkiewicz.template") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.rkotkiewicz:template:1.0.0")
  }
}

apply(plugin = "io.github.rkotkiewicz.template")

Using the plugins DSL:

plugins {
  id "io.github.rkotkiewicz.template" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.rkotkiewicz:template:1.0.0"
  }
}

apply plugin: "io.github.rkotkiewicz.template"

Learn how to apply plugins to subprojects