com.raynigon.unit_api.spring_boot_jpa_starter.BuildVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-jpa-starter Show documentation
Show all versions of spring-boot-jpa-starter Show documentation
The spring-boot-jpa-starter is a part of the unit-api
package com.raynigon.unit_api.spring_boot_jpa_starter;
import java.time.OffsetDateTime;
/**
* The BuildVersion class allows easy access to artifact id, group id, artifact version and build time.
* The version is also available as integers in the attributes MAJOR_VERSION, MINOR_VERSION and PATCH_VERSION.
*/
public class BuildVersion {
/**
* The artifact id of this artifact
*/
public static final String ARTIFACT_ID = "spring-boot-jpa-starter";
/**
* The group id of this artifact
*/
public static final String GROUP_ID = "com.raynigon.unit-api";
/**
* The version of this artifact
*/
public static final String VERSION = "3.0.5";
/**
* The major part for the version of this artifact as an integer
*/
public static final int MAJOR_VERSION = 3;
/**
* The minor part for the version of this artifact as an integer
*/
public static final int MINOR_VERSION = 0;
/**
* The patch part for the version of this artifact as an integer
*/
public static final int PATCH_VERSION = 5;
/**
* Indicates if this artifact is a snapshot version
*/
public static final boolean SNAPSHOT = false;
/**
* The date time when this artifact was created
*/
public static final OffsetDateTime BUILD_DATE = OffsetDateTime.parse("2023-10-26T09:28:05.300594440Z");
}