Browse Source

fix: 修复maven install问题

pull/85/head
xiuchen 6 months ago
parent
commit
3c6b0591e4
  1. 2
      eiam-application/eiam-application-all/pom.xml
  2. 2
      eiam-authentication/eiam-authentication-all/pom.xml
  3. 22
      eiam-common/src/main/java/cn/topiam/employee/common/repository/app/impl/AppRepositoryCustomizedImpl.java
  4. 2
      eiam-identity-source/eiam-identity-source-all/pom.xml
  5. 2
      eiam-protocol/eiam-protocol-all/pom.xml

2
eiam-application/eiam-application-all/pom.xml

@ -27,7 +27,7 @@
<version>1.1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
<artifactId>eiam-application-all</artifactId>

2
eiam-authentication/eiam-authentication-all/pom.xml

@ -27,7 +27,7 @@
<version>1.1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>pom</packaging>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
<artifactId>eiam-authentication-all</artifactId>

22
eiam-common/src/main/java/cn/topiam/employee/common/repository/app/impl/AppRepositoryCustomizedImpl.java

@ -1,8 +1,19 @@
/*
* Copyright (c) 2022-Present. Jinan Yuanchuang Network Technology Co., Ltd.
* All rights reserved.
* 项目名称TOPIAM 企业数字身份管控平台
* 版权说明本软件属济南源创网络科技有限公司所有受著作权法和国际版权条约的保护在未获得济南源创网络科技有限公司正式授权情况下任何企业和个人未经授权擅自复制修改分发本程序的全部或任何部分将要承担一切由此导致的民事或刑事责任
* eiam-common - Employee Identity and Access Management
* Copyright © 2022-Present Jinan Yuanchuang Network Technology Co., Ltd. (support@topiam.cn)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package cn.topiam.employee.common.repository.app.impl;
@ -51,11 +62,10 @@ public class AppRepositoryCustomizedImpl implements AppRepositoryCustomized {
app.template,app.protocol,app.type,app.icon,app.initLoginUrl,app.authorizationType,app.enabled,LISTAGG(DISTINCT ass.groupId,","))
FROM
AppEntity app
LEFT JOIN AppAccessPolicyEntity appAcce ON app.id = appAcce.appId
LEFT JOIN AppAccessPolicyEntity appAcce ON app.id = appAcce.appId AND appAcce.enabled = true
LEFT JOIN AppGroupAssociationEntity ass ON app.id = ass.app.id
WHERE
app.enabled = true
AND appAcce.enabled = true
AND (appAcce.subjectId IN (:subjectIds) OR app.authorizationType = :type)
GROUP BY app.id
""";

2
eiam-identity-source/eiam-identity-source-all/pom.xml

@ -28,7 +28,7 @@
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<packaging>jar</packaging>
<artifactId>eiam-identity-source-all</artifactId>
<dependencies>

2
eiam-protocol/eiam-protocol-all/pom.xml

@ -30,7 +30,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>eiam-protocol-all</artifactId>
<packaging>pom</packaging>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>cn.topiam</groupId>

Loading…
Cancel
Save