Initial commit

This commit is contained in:
Erik C. Thauvin 2023-04-27 22:36:49 -07:00
commit c103a85140
30 changed files with 981 additions and 0 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 BUILDDATE = 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.");
}
}