net.h34t.tempolin
Owner: Stefan Schallerl
A templating engine for kotlin that creates code from text templates.
https://codeberg.org/h34tnet/tempolin
Sources: https://codeberg.org/h34tnet/tempolin.git
Version 1.0.0 (latest)
1.0.0
Created 20 February 2024.
A templating engine for kotlin that creates code from text templates.
Using the plugins DSL:
plugins {
id("net.h34t.tempolin") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.h34t:tempolin:1.0.0")
}
}
apply(plugin = "net.h34t.tempolin")
Using the plugins DSL:
plugins {
id "net.h34t.tempolin" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.h34t:tempolin:1.0.0"
}
}
apply plugin: "net.h34t.tempolin"