io.github.rkotkiewicz.template
Owner: Radosław Kotkiewicz
This Gradle plugin creates tasks that fill template files.
https://github.com/rkotkiewicz/gradle-template
Sources: https://github.com/rkotkiewicz/gradle-template
Version 1.0.0 (latest)
1.0.0
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"