Search Gradle plugins

Version 1.0.0 (latest)

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"

Learn how to apply plugins to subprojects