synapticloop.templar-gen
Owner: synapticloop
static site generator - this utilises the templar templating language
https://github.com/synapticloop/templar-gen
Sources: https://github.com/synapticloop/templar-gen
Version 1.2.0
1.2.0
Created 25 January 2017.
static site generator - this utilises the templar templating language
Using the plugins DSL:
plugins {
id("synapticloop.templar-gen") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.synapticloop:templar-gen:1.2.0")
}
}
apply(plugin = "synapticloop.templar-gen")
Using the plugins DSL:
plugins {
id "synapticloop.templar-gen" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.synapticloop:templar-gen:1.2.0"
}
}
apply plugin: "synapticloop.templar-gen"