From 99bdc28b96317a87b29081792763eb7b0c34b93b Mon Sep 17 00:00:00 2001 From: wuguolin Date: Tue, 23 Nov 2021 12:04:20 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=B0=86lombok=E8=BF=98=E5=8E=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ipsos/common/dto/PluginSysMenu.java | 158 +----------------- .../dto/request/XpackBaseTreeRequest.java | 58 +------ .../auth/dto/request/XpackSysAuthRequest.java | 26 +-- .../xpack/dept/dto/response/XpackSysDept.java | 78 +-------- .../display/dto/response/SysSettingDto.java | 50 +----- .../ldap/dto/request/LdapValidateRequest.java | 18 +- .../plugins/xpack/oidc/dto/SSOToken.java | 18 +- .../plugins/xpack/oidc/dto/SSOUserInfo.java | 34 +--- .../xpack/role/dto/response/XpackRoleDto.java | 58 +------ .../role/dto/response/XpackRoleItemDto.java | 18 +- .../xpack/ukey/dto/request/XpackUkeyDto.java | 53 +----- 11 files changed, 11 insertions(+), 558 deletions(-) diff --git a/plugins/plugin-common/src/main/java/com/ipsos/common/dto/PluginSysMenu.java b/plugins/plugin-common/src/main/java/com/ipsos/common/dto/PluginSysMenu.java index 22e7eaf..a978c9f 100644 --- a/plugins/plugin-common/src/main/java/com/ipsos/common/dto/PluginSysMenu.java +++ b/plugins/plugin-common/src/main/java/com/ipsos/common/dto/PluginSysMenu.java @@ -4,7 +4,7 @@ import lombok.Data; import java.util.Objects; - +@Data public class PluginSysMenu { private Long menuId; @@ -68,160 +68,4 @@ public class PluginSysMenu { public int hashCode() { return Objects.hash(menuId); } - - public Long getMenuId() { - return menuId; - } - - public void setMenuId(Long menuId) { - this.menuId = menuId; - } - - public Long getPid() { - return pid; - } - - public void setPid(Long pid) { - this.pid = pid; - } - - public Integer getSubCount() { - return subCount; - } - - public void setSubCount(Integer subCount) { - this.subCount = subCount; - } - - public Integer getType() { - return type; - } - - public void setType(Integer type) { - this.type = type; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getComponent() { - return component; - } - - public void setComponent(String component) { - this.component = component; - } - - public Integer getMenuSort() { - return menuSort; - } - - public void setMenuSort(Integer menuSort) { - this.menuSort = menuSort; - } - - public String getIcon() { - return icon; - } - - public void setIcon(String icon) { - this.icon = icon; - } - - public String getPath() { - return path; - } - - public void setPath(String path) { - this.path = path; - } - - public Boolean getiFrame() { - return iFrame; - } - - public void setiFrame(Boolean iFrame) { - this.iFrame = iFrame; - } - - public Boolean getCache() { - return cache; - } - - public void setCache(Boolean cache) { - this.cache = cache; - } - - public Boolean getHidden() { - return hidden; - } - - public void setHidden(Boolean hidden) { - this.hidden = hidden; - } - - public String getPermission() { - return permission; - } - - public void setPermission(String permission) { - this.permission = permission; - } - - public String getCreateBy() { - return createBy; - } - - public void setCreateBy(String createBy) { - this.createBy = createBy; - } - - public String getUpdateBy() { - return updateBy; - } - - public void setUpdateBy(String updateBy) { - this.updateBy = updateBy; - } - - public Long getCreateTime() { - return createTime; - } - - public void setCreateTime(Long createTime) { - this.createTime = createTime; - } - - public Long getUpdateTime() { - return updateTime; - } - - public void setUpdateTime(Long updateTime) { - this.updateTime = updateTime; - } - - public boolean isNoLayout() { - return noLayout; - } - - public void setNoLayout(boolean noLayout) { - this.noLayout = noLayout; - } - - public static long getSerialVersionUID() { - return serialVersionUID; - } } diff --git a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/auth/dto/request/XpackBaseTreeRequest.java b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/auth/dto/request/XpackBaseTreeRequest.java index 6d62fd5..0f12fd3 100644 --- a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/auth/dto/request/XpackBaseTreeRequest.java +++ b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/auth/dto/request/XpackBaseTreeRequest.java @@ -3,7 +3,7 @@ package com.ipsos.plugins.xpack.auth.dto.request; import com.ipsos.common.constants.PluginSystemConstants; import lombok.Data; - +@Data public class XpackBaseTreeRequest { private String id; @@ -32,60 +32,4 @@ public class XpackBaseTreeRequest { this.modelType = modelType; this.withExtend = withExtend; } - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getModelType() { - return modelType; - } - - public void setModelType(String modelType) { - this.modelType = modelType; - } - - public String getPid() { - return pid; - } - - public void setPid(String pid) { - this.pid = pid; - } - - public String getWithExtend() { - return withExtend; - } - - public void setWithExtend(String withExtend) { - this.withExtend = withExtend; - } - - public String getCreateBy() { - return createBy; - } - - public void setCreateBy(String createBy) { - this.createBy = createBy; - } - - public String getWithAuth() { - return withAuth; - } - - public void setWithAuth(String withAuth) { - this.withAuth = withAuth; - } } diff --git a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/auth/dto/request/XpackSysAuthRequest.java b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/auth/dto/request/XpackSysAuthRequest.java index 18b5ef8..6cb7dbf 100644 --- a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/auth/dto/request/XpackSysAuthRequest.java +++ b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/auth/dto/request/XpackSysAuthRequest.java @@ -6,7 +6,7 @@ import lombok.Data; import java.util.List; - +@Data public class XpackSysAuthRequest extends XpackSysAuth { private List authSources; @@ -14,28 +14,4 @@ public class XpackSysAuthRequest extends XpackSysAuth { private List authTargets; private XpackSysAuthDetail authDetail; - - public List getAuthSources() { - return authSources; - } - - public void setAuthSources(List authSources) { - this.authSources = authSources; - } - - public List getAuthTargets() { - return authTargets; - } - - public void setAuthTargets(List authTargets) { - this.authTargets = authTargets; - } - - public XpackSysAuthDetail getAuthDetail() { - return authDetail; - } - - public void setAuthDetail(XpackSysAuthDetail authDetail) { - this.authDetail = authDetail; - } } diff --git a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/dept/dto/response/XpackSysDept.java b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/dept/dto/response/XpackSysDept.java index fd344d4..9e47c6f 100644 --- a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/dept/dto/response/XpackSysDept.java +++ b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/dept/dto/response/XpackSysDept.java @@ -4,7 +4,7 @@ package com.ipsos.plugins.xpack.dept.dto.response; import com.ipsos.common.annotation.PluginResultMap; import lombok.Data; - +@Data @PluginResultMap public class XpackSysDept { @@ -27,80 +27,4 @@ public class XpackSysDept { private Long updateTime; private static final long serialVersionUID = 1L; - - public Long getDeptId() { - return deptId; - } - - public void setDeptId(Long deptId) { - this.deptId = deptId; - } - - public Long getPid() { - return pid; - } - - public void setPid(Long pid) { - this.pid = pid; - } - - public Integer getSubCount() { - return subCount; - } - - public void setSubCount(Integer subCount) { - this.subCount = subCount; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public Integer getDeptSort() { - return deptSort; - } - - public void setDeptSort(Integer deptSort) { - this.deptSort = deptSort; - } - - public String getCreateBy() { - return createBy; - } - - public void setCreateBy(String createBy) { - this.createBy = createBy; - } - - public String getUpdateBy() { - return updateBy; - } - - public void setUpdateBy(String updateBy) { - this.updateBy = updateBy; - } - - public Long getCreateTime() { - return createTime; - } - - public void setCreateTime(Long createTime) { - this.createTime = createTime; - } - - public Long getUpdateTime() { - return updateTime; - } - - public void setUpdateTime(Long updateTime) { - this.updateTime = updateTime; - } - - public static long getSerialVersionUID() { - return serialVersionUID; - } } diff --git a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/display/dto/response/SysSettingDto.java b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/display/dto/response/SysSettingDto.java index db1aca7..6e0125e 100644 --- a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/display/dto/response/SysSettingDto.java +++ b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/display/dto/response/SysSettingDto.java @@ -3,7 +3,7 @@ package com.ipsos.plugins.xpack.display.dto.response; import lombok.Data; import org.springframework.web.multipart.MultipartFile; - +@Data public class SysSettingDto { private String paramKey; @@ -18,52 +18,4 @@ public class SysSettingDto { private String fileName; - - public String getParamKey() { - return paramKey; - } - - public void setParamKey(String paramKey) { - this.paramKey = paramKey; - } - - public String getParamValue() { - return paramValue; - } - - public void setParamValue(String paramValue) { - this.paramValue = paramValue; - } - - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - - public Integer getSort() { - return sort; - } - - public void setSort(Integer sort) { - this.sort = sort; - } - - public MultipartFile getFile() { - return file; - } - - public void setFile(MultipartFile file) { - this.file = file; - } - - public String getFileName() { - return fileName; - } - - public void setFileName(String fileName) { - this.fileName = fileName; - } } diff --git a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/ldap/dto/request/LdapValidateRequest.java b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/ldap/dto/request/LdapValidateRequest.java index 1f58d51..22c647f 100644 --- a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/ldap/dto/request/LdapValidateRequest.java +++ b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/ldap/dto/request/LdapValidateRequest.java @@ -5,7 +5,7 @@ import lombok.Data; import java.io.Serializable; - +@Data @Builder public class LdapValidateRequest implements Serializable { @@ -20,20 +20,4 @@ public class LdapValidateRequest implements Serializable { this.userName = userName; this.password = password; } - - public String getUserName() { - return userName; - } - - public void setUserName(String userName) { - this.userName = userName; - } - - public String getPassword() { - return password; - } - - public void setPassword(String password) { - this.password = password; - } } diff --git a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/oidc/dto/SSOToken.java b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/oidc/dto/SSOToken.java index 0cdb57c..3d12930 100644 --- a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/oidc/dto/SSOToken.java +++ b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/oidc/dto/SSOToken.java @@ -4,25 +4,9 @@ import lombok.Data; import java.io.Serializable; - +@Data public class SSOToken implements Serializable { private String accessToken; private String idToken; - - public String getAccessToken() { - return accessToken; - } - - public void setAccessToken(String accessToken) { - this.accessToken = accessToken; - } - - public String getIdToken() { - return idToken; - } - - public void setIdToken(String idToken) { - this.idToken = idToken; - } } diff --git a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/oidc/dto/SSOUserInfo.java b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/oidc/dto/SSOUserInfo.java index b006cab..002afe5 100644 --- a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/oidc/dto/SSOUserInfo.java +++ b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/oidc/dto/SSOUserInfo.java @@ -5,7 +5,7 @@ import lombok.Data; import java.io.Serializable; - +@Data public class SSOUserInfo implements Serializable { private String sub; @@ -15,36 +15,4 @@ public class SSOUserInfo implements Serializable { private String nickName; private String email; - - public String getSub() { - return sub; - } - - public void setSub(String sub) { - this.sub = sub; - } - - public String getUsername() { - return username; - } - - public void setUsername(String username) { - this.username = username; - } - - public String getNickName() { - return nickName; - } - - public void setNickName(String nickName) { - this.nickName = nickName; - } - - public String getEmail() { - return email; - } - - public void setEmail(String email) { - this.email = email; - } } diff --git a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/role/dto/response/XpackRoleDto.java b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/role/dto/response/XpackRoleDto.java index e7336f8..ef7859c 100644 --- a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/role/dto/response/XpackRoleDto.java +++ b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/role/dto/response/XpackRoleDto.java @@ -4,7 +4,7 @@ import lombok.Data; import java.io.Serializable; - +@Data public class XpackRoleDto implements Serializable { private Long roleId; @@ -22,60 +22,4 @@ public class XpackRoleDto implements Serializable { private Long updateTime; private static final long serialVersionUID = 1L; - - public Long getRoleId() { - return roleId; - } - - public void setRoleId(Long roleId) { - this.roleId = roleId; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public String getCreateBy() { - return createBy; - } - - public void setCreateBy(String createBy) { - this.createBy = createBy; - } - - public String getUpdateBy() { - return updateBy; - } - - public void setUpdateBy(String updateBy) { - this.updateBy = updateBy; - } - - public Long getCreateTime() { - return createTime; - } - - public void setCreateTime(Long createTime) { - this.createTime = createTime; - } - - public Long getUpdateTime() { - return updateTime; - } - - public void setUpdateTime(Long updateTime) { - this.updateTime = updateTime; - } } diff --git a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/role/dto/response/XpackRoleItemDto.java b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/role/dto/response/XpackRoleItemDto.java index 4014ede..b3f0a0c 100644 --- a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/role/dto/response/XpackRoleItemDto.java +++ b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/role/dto/response/XpackRoleItemDto.java @@ -6,26 +6,10 @@ import lombok.Data; import java.io.Serializable; @PluginResultMap - +@Data public class XpackRoleItemDto implements Serializable { private Long id; private String name; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } } diff --git a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/ukey/dto/request/XpackUkeyDto.java b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/ukey/dto/request/XpackUkeyDto.java index 642105b..689a4c3 100644 --- a/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/ukey/dto/request/XpackUkeyDto.java +++ b/plugins/plugin-interface/src/main/java/com/ipsos/plugins/xpack/ukey/dto/request/XpackUkeyDto.java @@ -5,7 +5,7 @@ import lombok.Data; import java.io.Serializable; @PluginResultMap - +@Data public class XpackUkeyDto implements Serializable { private static final long serialVersionUID = 447309072990546277L; @@ -21,55 +21,4 @@ public class XpackUkeyDto implements Serializable { private String status; - public static long getSerialVersionUID() { - return serialVersionUID; - } - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public Long getUserId() { - return userId; - } - - public void setUserId(Long userId) { - this.userId = userId; - } - - public String getAccessKey() { - return accessKey; - } - - public void setAccessKey(String accessKey) { - this.accessKey = accessKey; - } - - public String getSecretKey() { - return secretKey; - } - - public void setSecretKey(String secretKey) { - this.secretKey = secretKey; - } - - public Long getCreateTime() { - return createTime; - } - - public void setCreateTime(Long createTime) { - this.createTime = createTime; - } - - public String getStatus() { - return status; - } - - public void setStatus(String status) { - this.status = status; - } } From 89ab23bde27e3ad921a5c2f88851b9a262ca9d4e Mon Sep 17 00:00:00 2001 From: wuguolin Date: Tue, 23 Nov 2021 13:07:38 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 3 +++ backend/pom.xml | 20 +++++++++--------- conf/data/ehcache/jdbc_provider_cache.index | Bin 4 -> 0 bytes conf/data/ehcache/users_info.data | Bin 763 -> 764 bytes conf/data/ehcache/users_info.index | Bin 185 -> 185 bytes conf/data/ehcache/users_permissions_info.data | Bin 438 -> 455 bytes .../data/ehcache/users_permissions_info.index | Bin 185 -> 185 bytes conf/data/ehcache/users_roles_info.data | Bin 485 -> 485 bytes conf/data/ehcache/users_roles_info.index | Bin 185 -> 185 bytes conf/{smartbi.properties => ipsos.properties} | 0 frontend/src/views/chart/view/ChartEdit.vue | 4 ++-- plugins/plugin-common/pom.xml | 2 +- plugins/pom.xml | 13 +++++++++--- 13 files changed, 26 insertions(+), 16 deletions(-) delete mode 100644 conf/data/ehcache/jdbc_provider_cache.index rename conf/{smartbi.properties => ipsos.properties} (100%) diff --git a/.gitignore b/.gitignore index dd0d793..677be40 100644 --- a/.gitignore +++ b/.gitignore @@ -56,3 +56,6 @@ pnpm-debug.log* package-lock.json + + +conf/data/ehcache \ No newline at end of file diff --git a/backend/pom.xml b/backend/pom.xml index 792dec7..24ea289 100644 --- a/backend/pom.xml +++ b/backend/pom.xml @@ -288,11 +288,11 @@ true - - - - - + + + + + org.springframework.boot spring-boot-configuration-processor @@ -424,11 +424,11 @@ always - - - - - + + + + + diff --git a/conf/data/ehcache/jdbc_provider_cache.index b/conf/data/ehcache/jdbc_provider_cache.index deleted file mode 100644 index 711006c3d3b5c6d50049e3f48311f3dbe372803d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4 LcmZ4UmVp%j1%Lsc diff --git a/conf/data/ehcache/users_info.data b/conf/data/ehcache/users_info.data index 4ebbea9ebe081cfe1c40111bff775cc84c77e924..8ffb46d1fb3b51cc1f3ecb18cd4095f54fa9bf54 100644 GIT binary patch delta 40 ucmey(`iFJG5f*Q)Tl^bO6fko0CZ^s+B^BfG#j3+xYZRD7JSU(YnD*!fi4=w-z diff --git a/conf/data/ehcache/users_info.index b/conf/data/ehcache/users_info.index index 372096f95bb129c883c79dc6faf216b1136cac34..5c379929a8cfb1778eaf090a1582e044cc1bd60b 100644 GIT binary patch delta 39 ecmdnVxRY_hOa*VZ5C%-Z^rwV@wX`_3$PfUMI0p&< delta 39 fcmdnVxRY_hOa+hLXEzuy0MqXh2G-Kz)FMLw!~6)h diff --git a/conf/data/ehcache/users_permissions_info.data b/conf/data/ehcache/users_permissions_info.data index f417eac0614641dc44e03a1805e4313e36f73c0a..e2b8837f559f9e0b4e06b21dca8217a15ad64fe2 100644 GIT binary patch delta 56 zcmdnSe4Kg05f*Q)TNM*exUut;voJ6)@JtqEoGM$wz?WEBl96AOSyE|Ll$w}QQO=P# Jr?diuD*zX*6T1Ka delta 39 scmX@kyp4In5f+c4+{}q5+}OFxSr`}?xF?G;PUWd6=SZA=SRaHd00s{YH~;_u diff --git a/conf/data/ehcache/users_permissions_info.index b/conf/data/ehcache/users_permissions_info.index index ef1d63530fffa4de5ffc3a5c34a98013876a1af1..247bfaf84e3b30727cafa3ebfa1878be62c0fa4b 100644 GIT binary patch delta 39 ecmdnVxRY_hOa*VZ5C%-Zc)WyxwX`_3$PfUKQ3lii delta 39 fcmdnVxRY_hOa+hLXEzuy0OPh22G-Kz)FMLw!G#EM diff --git a/conf/data/ehcache/users_roles_info.data b/conf/data/ehcache/users_roles_info.data index b777d2a6987d9930e50e4922a60e21f12e0fce25..9fe4a58138393dacec9b0f92b1465469b37af765 100644 GIT binary patch delta 24 ecmaFL{FHgZ5f*Q)TS^;Gh%$1_DXmBZ;tBwNs0tha delta 24 ecmaFL{FHgZ5f+c4+~AETL>W0|AJ$I<;tBwO_zEom diff --git a/conf/data/ehcache/users_roles_info.index b/conf/data/ehcache/users_roles_info.index index 08b50a8ec697991840fec4f2c0f6df32d089adbc..e05054748ce69d4696fde7c4dc207b02b70efef1 100644 GIT binary patch delta 14 VcmdnVxRY_hOcrmq5Qd3!WdJ5`1knHh delta 14 WcmdnVxRY_hOcsycXE!F!l>q=QJ_dgP diff --git a/conf/smartbi.properties b/conf/ipsos.properties similarity index 100% rename from conf/smartbi.properties rename to conf/ipsos.properties diff --git a/frontend/src/views/chart/view/ChartEdit.vue b/frontend/src/views/chart/view/ChartEdit.vue index 64984b3..742b364 100644 --- a/frontend/src/views/chart/view/ChartEdit.vue +++ b/frontend/src/views/chart/view/ChartEdit.vue @@ -106,11 +106,11 @@ @change="save(true,'chart',true,true)" >
- + diff --git a/plugins/plugin-common/pom.xml b/plugins/plugin-common/pom.xml index cb3948e..0843184 100644 --- a/plugins/plugin-common/pom.xml +++ b/plugins/plugin-common/pom.xml @@ -34,8 +34,8 @@ org.projectlombok lombok + 1.18.18 - diff --git a/plugins/pom.xml b/plugins/pom.xml index e8b28b5..525e8ad 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -15,9 +15,9 @@ - spring-boot-parent - org.springframework.boot - 2.3.4.RELEASE + ipsos-bi-server + com.ipsos + 1.3.0 @@ -92,6 +92,13 @@ 1.8 1.8 + + + org.projectlombok + lombok + 1.18.18 + +