Cleaned up template builder and related tests

This commit is contained in:
Erik C. Thauvin 2024-07-04 20:35:28 -07:00
parent 81212468fd
commit c4f143ae02
Signed by: erik
GPG key ID: 776702A6A2DA330E
5 changed files with 12 additions and 8 deletions

View file

@ -0,0 +1,28 @@
/*
* This file is automatically generated.
* Do not modify! -- ALL CHANGES WILL BE ERASED!
*/
package {{v packageName/}};
import java.util.Date;
/**
* Provides project version information.
*/
public final class {{v className/}} {
public static final String PROJECT = "{{v project/}}";
public static final Date BUILD_DATE = new Date({{v epoch/}}L);
public static final int MAJOR = {{v major/}};
public static final int MINOR = {{v minor/}};
public static final int REVISION = {{v revision/}};
public static final String QUALIFIER = "{{v qualifier/}}";
public static final String VERSION = "{{v version/}}";
/**
* Disables the default constructor.
*/
private {{v className/}}() {
throw new UnsupportedOperationException("Illegal constructor call.");
}
}