From 980634c8cea6d01291b25742c0cfbd90212f8c2e Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Thu, 19 Sep 2019 18:07:38 -0700 Subject: [PATCH] Added version template. --- version.mustache | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 version.mustache diff --git a/version.mustache b/version.mustache new file mode 100644 index 0000000..34a4442 --- /dev/null +++ b/version.mustache @@ -0,0 +1,18 @@ +/* +* This file is automatically generated. +* Do not modify! -- ALL CHANGES WILL BE ERASED! +*/ + +package {{packageName}} + +/** +* Provides semantic version information. +* +* @author Semantic Version Annotation Processor +*/ +internal object {{className}} { + @JvmField + val PROJECT = "{{project}}" + @JvmField + val VERSION = "{{version}}" +}