---优化docker镜像打包
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
package com.xjrsoft;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TJarInfo {
|
||||
|
||||
private String name; //jar名称
|
||||
|
||||
private boolean custom;//开发jar包,需要强制更新
|
||||
|
||||
public TJarInfo(String name, boolean custom) {
|
||||
super();
|
||||
this.name = name;
|
||||
this.custom = custom;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user