
com.blinkfox.jpack.consts.ImageBuildResultEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpack-maven-plugin Show documentation
Show all versions of jpack-maven-plugin Show documentation
这是一个用于对 SpringBoot 服务打包为 Windows、Linux 下可部署包的 Maven 插件。
package com.blinkfox.jpack.consts;
/**
* Docker 镜像构建结果的枚举类.
*
* @author blinkfox on 2020-06-24.
* @since v1.5.2
*/
public enum ImageBuildResultEnum {
/**
* 不能进行构建,如:缺少 Docker 环境或 Docker 环境无法使用等.
*/
UNABLE,
/**
* 构建成功.
*/
SUCCESS,
/**
* 构建失败.
*/
FAILURE;
}