28 lines
820 B
Text
28 lines
820 B
Text
/**
|
|
* 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.");
|
|
}
|
|
}
|