Search Gradle plugins

dev.anies.gradle.template

Adds templating tasks for use in Gradle builds. Templating engines include: Freemarker. WIP: Velocity, Thymeleaf, Pebble, KorTE

https://github.com/arocnies/gradle-template

Sources: https://github.com/arocnies/gradle-template

Version 0.0.2 (latest)

0.0.2

Created 08 March 2022.

Adds templating tasks for use in Gradle builds. Templating engines include: Freemarker. WIP: Velocity, Thymeleaf, Pebble, KorTE

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.anies.gradle.template") version "0.0.2"
}

See also:

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