Search Gradle plugins

gg.jte.gradle

Precompile all jte templates to Java classes during gradle build

https://jte.gg

Sources: https://github.com/casid/jte.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("gg.jte.gradle") version "1.11.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gg.jte:jte-gradle-plugin:1.11.1")
      }
    }
    
    apply(plugin = "gg.jte.gradle")
  • Applying plugins to all subprojects .