Renamed example to examples
This commit is contained in:
parent
45581b8001
commit
31584513b0
27 changed files with 3 additions and 3 deletions
17
examples/src/main/java/com/example/GeneratedVersion.java
Normal file
17
examples/src/main/java/com/example/GeneratedVersion.java
Normal 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.");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue