Renamed example to examples

This commit is contained in:
Erik C. Thauvin 2023-04-28 10:50:13 -07:00
parent 45581b8001
commit 31584513b0
27 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,17 @@
package com.example;
import java.util.Date;
public final class GeneratedVersion {
public static final String PROJECT = "Sample";
public static final Date BUILD_DATE = new Date(1682700481013L);
public static final int MAJOR = 1;
public static final int MINOR = 0;
public static final int REVISION = 1;
public static final String QUALIFIER = "rc1";
public static final String VERSION = "1.0.1-rc1";
private GeneratedVersion() {
throw new UnsupportedOperationException("Illegal constructor call.");
}
}