Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature][linkis-public-enhancements] merge pes common module #4848

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

import org.apache.commons.io.IOUtils;
import org.apache.commons.io.input.ReversedLinesFileReader;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.tuple.Triple;

import java.io.File;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.compress.utils.Lists;
import org.apache.commons.lang.exception.ExceptionUtils;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.apache.commons.lang3.tuple.MutablePair;

import org.springframework.beans.factory.annotation.Autowired;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import org.apache.linkis.server.BDPJettyServerHelper;

import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.apache.linkis.protocol.constants.TaskConstant;
import org.apache.linkis.storage.utils.StorageUtils;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;

import java.util.Locale;
import java.util.Map;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import org.apache.linkis.engineplugin.impala.client.protocol.ExecSummary;
import org.apache.linkis.engineplugin.impala.client.util.ThriftUtil;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.hive.service.rpc.thrift.TExecuteStatementReq;
import org.apache.hive.service.rpc.thrift.TExecuteStatementResp;
import org.apache.hive.service.rpc.thrift.TOperationHandle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import org.apache.linkis.scheduler.executer.{
SuccessExecuteResponse
}

import org.apache.commons.lang.exception.ExceptionUtils
import org.apache.commons.lang3.exception.ExceptionUtils

import java.lang.reflect.InvocationTargetException

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<dependencies>
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-bml-common</artifactId>
<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
43 changes: 0 additions & 43 deletions linkis-public-enhancements/linkis-bml/linkis-bml-common/pom.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</dependency>
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-bml-common</artifactId>
<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
1 change: 0 additions & 1 deletion linkis-public-enhancements/linkis-bml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

<packaging>pom</packaging>
<modules>
<module>linkis-bml-common</module>
<module>linkis-bml-server</module>
<module>linkis-bml-client</module>
</modules>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.apache.linkis.server.Message;
import org.apache.linkis.server.utils.ModuleUserUtils;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DuplicateKeyException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.apache.linkis.server.Message;
import org.apache.linkis.server.utils.ModuleUserUtils;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DuplicateKeyException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.apache.linkis.governance.common.constant.job.JobRequestConstants;

import org.apache.commons.collections.MapUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.apache.linkis.configuration.util.CommonUtils;
import org.apache.linkis.governance.common.constant.job.JobRequestConstants;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-cs-listener</artifactId>
<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
</dependency>

Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</dependency>
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-cs-common</artifactId>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cs-listener need to merge to pes common

<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<dependencies>
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-cs-common</artifactId>
<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
</dependency>

Expand All @@ -39,12 +39,6 @@
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-cs-listener</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-instance-label-client</artifactId>
Expand Down
2 changes: 0 additions & 2 deletions linkis-public-enhancements/linkis-context-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@

<modules>

<module>linkis-cs-common</module>
<module>linkis-cs-listener</module>
<module>linkis-cs-client</module>
<module>linkis-cs-server</module>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,7 @@

<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-datasource-manager-common</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-metadata-query-common</artifactId>
<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<!-- data source manager common dependency-->
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-datasource-manager-common</artifactId>
<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
Expand Down Expand Up @@ -91,12 +91,6 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<!--Metadata common-->
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-metadata-query-common</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,10 @@
<artifactId>linkis-metadata-query-server</artifactId>

<dependencies>
<!--Metadata common-->
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-metadata-query-common</artifactId>
<version>${project.version}</version>
</dependency>
<!-- data source manager common dependency-->
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-datasource-manager-common</artifactId>
<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<dependencies>
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-metadata-query-common</artifactId>
<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<dependencies>
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-metadata-query-common</artifactId>
<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<dependencies>
<dependency>
<groupId>org.apache.linkis</groupId>
<artifactId>linkis-metadata-query-common</artifactId>
<artifactId>linkis-pes-common</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
Expand Down
Loading
Loading