Search Gradle plugins

Version 0.9.1

Created 27 November 2023.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "net.h34t.tempolin"

Learn how to apply plugins to subprojects