Gradle

If you are running a simple gradle project that only requires the templar gen (for instance if you are building documentation on the gh-pages branch and this is all that is required.)

simple build.gradle

plugins {
	id 'synapticloop.templar-gen' version '1.4.1'
}

repositories {
	jcenter()
}

templarGen {
	out = '.'
	inDir = 'src'
}

You can then simply:

gradle templarGen

or as a shortcut

gradle tG