com.raynigon.unit_api.springdoc_starter.BuildVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springdoc-starter Show documentation
Show all versions of springdoc-starter Show documentation
The springdoc-starter is a part of the unit-api
package com.raynigon.unit_api.springdoc_starter;
import java.time.OffsetDateTime;
public class BuildVersion {
public static final String ARTIFACT_ID = "springdoc-starter";
public static final String GROUP_ID = "com.raynigon.unit-api";
public static final String VERSION = "1.0.1";
public static final int MAJOR_VERSION = 1;
public static final int MINOR_VERSION = 0;
public static final int PATCH_VERSION = 1;
public static final boolean SNAPSHOT = false;
public static final OffsetDateTime BUILD_DATE = OffsetDateTime.parse("2020-09-15T08:16:28.272Z");
}