gg.jte.gradle
Owner: Andreas Hager
Precompile all jte templates to Java classes during gradle build
Sources: https://github.com/casid/jte.git
Version 3.1.4
3.1.4
Created 30 October 2023.
Precompile all jte/kte templates to Java/Kotlin classes during gradle build
Using the plugins DSL:
plugins {
id("gg.jte.gradle") version "3.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gg.jte:jte-gradle-plugin:3.1.4")
}
}
apply(plugin = "gg.jte.gradle")
Using the plugins DSL:
plugins {
id "gg.jte.gradle" version "3.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gg.jte:jte-gradle-plugin:3.1.4"
}
}
apply plugin: "gg.jte.gradle"