Added version template.

This commit is contained in:
Erik C. Thauvin 2019-09-19 18:07:38 -07:00
parent 65e694e527
commit 980634c8ce

18
version.mustache Normal file
View file

@ -0,0 +1,18 @@
/*
* This file is automatically generated.
* Do not modify! -- ALL CHANGES WILL BE ERASED!
*/
package {{packageName}}
/**
* Provides semantic version information.
*
* @author <a href="https://github.com/ethauvin/semver">Semantic Version Annotation Processor</a>
*/
internal object {{className}} {
@JvmField
val PROJECT = "{{project}}"
@JvmField
val VERSION = "{{version}}"
}