org.webpieces.htmlcompiler
Owner: Zachary Reed
Webpieces HTML template compiler
https://github.com/deanhiller/webpieces
Sources: https://github.com/deanhiller/webpieces
Using the plugins DSL:
plugins {
id("org.webpieces.htmlcompiler") version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.webpieces:gradle-plugin-htmlcompiler:2.1.0")
}
}
apply(plugin = "org.webpieces.htmlcompiler")
Using the plugins DSL:
plugins {
id "org.webpieces.htmlcompiler" version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.webpieces:gradle-plugin-htmlcompiler:2.1.0"
}
}
apply plugin: "org.webpieces.htmlcompiler"