com.zopen.ato.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zopen-ato-starter Show documentation
Show all versions of zopen-ato-starter Show documentation
Alibaba Tencent And Others For Spring Boot.
package com.zopen.ato;
public final class Version {
private final static int MAJOR_VERSION = 1;
private final static int MINOR_VERSION = 0;
private final static int REVISION_VERSION = 1;
private final static int BUILD_VERSION = 20200610;
private final static String TYPE_VERSION = "RELEASE";
public static String getVersionNumber() {
return "v" + MAJOR_VERSION + "." + MINOR_VERSION + "." + REVISION_VERSION
+ "." + BUILD_VERSION + "." + TYPE_VERSION;
}
}