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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gg.jte:jte-gradle-plugin:1.6.0")
  }
}

apply(plugin = "gg.jte.gradle")

Using the plugins DSL:

plugins {
  id "gg.jte.gradle" version "1.6.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gg.jte:jte-gradle-plugin:1.6.0"
  }
}

apply plugin: "gg.jte.gradle"

Learn how to apply plugins to subprojects