Search Gradle plugins

Version 0.9.3

Created 12 December 2023.

A templating engine for kotlin that creates code from text templates.

Using the plugins DSL:

plugins {
  id("net.h34t.tempolin") version "0.9.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.h34t:tempolin:0.9.3")
  }
}

apply(plugin = "net.h34t.tempolin")

Using the plugins DSL:

plugins {
  id "net.h34t.tempolin" version "0.9.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.h34t:tempolin:0.9.3"
  }
}

apply plugin: "net.h34t.tempolin"

Learn how to apply plugins to subprojects