Search Gradle plugins

Version 2.0.148

Created 13 April 2021.

Webpieces HTML template compiler

Using the plugins DSL:

plugins {
  id("org.webpieces.htmlcompiler") version "2.0.148"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.webpieces:gradle-plugin-htmlcompiler:2.0.148")
  }
}

apply(plugin = "org.webpieces.htmlcompiler")

Using the plugins DSL:

plugins {
  id "org.webpieces.htmlcompiler" version "2.0.148"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.webpieces:gradle-plugin-htmlcompiler:2.0.148"
  }
}

apply plugin: "org.webpieces.htmlcompiler"

Learn how to apply plugins to subprojects