All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blinkfox.jpack.consts.ImageBuildResultEnum Maven / Gradle / Ivy

Go to download

这是一个用于对 SpringBoot 服务打包为 Windows、Linux 下可部署包的 Maven 插件。

There is a newer version: 1.5.5
Show newest version
package com.blinkfox.jpack.consts;

/**
 * Docker 镜像构建结果的枚举类.
 *
 * @author blinkfox on 2020-06-24.
 * @since v1.5.2
 */
public enum ImageBuildResultEnum {

    /**
     * 不能进行构建,如:缺少 Docker 环境或 Docker 环境无法使用等.
     */
    UNABLE,

    /**
     * 构建成功.
     */
    SUCCESS,

    /**
     * 构建失败.
     */
    FAILURE;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy