Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 29 March 2023.

This Gradle plugin creates tasks that fill template files.

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.rkotkiewicz:template:1.0.0")
      }
    }
    
    apply(plugin = "io.github.rkotkiewicz.template")
  • Applying plugins to all subprojects .