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.5.0 (latest)
1.5.0
Created 04 April 2020.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
static site generator - this utilises the templar templating language
Using the plugins DSL:
plugins {
id("synapticloop.templar-gen") version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.synapticloop:templar-gen:1.5.0")
}
}
apply(plugin = "synapticloop.templar-gen")
Using the plugins DSL:
plugins {
id "synapticloop.templar-gen" version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.synapticloop:templar-gen:1.5.0"
}
}
apply plugin: "synapticloop.templar-gen"