Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.webpieces.templatecompiler") version "2.1.109"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.webpieces:gradle-plugin-htmlcompiler:2.1.109")
      }
    }
    
    apply(plugin = "org.webpieces.templatecompiler")
  • Applying plugins to all subprojects .