mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-25 17:08:29 +00:00
chore(deps): fix (commons-collections:commons-collections) (#14425)
Co-authored-by: david-leifker <114954101+david-leifker@users.noreply.github.com>
This commit is contained in:
parent
f62a76e4d2
commit
de3c454fd6
@ -136,7 +136,6 @@ project.ext.externalDependency = [
|
||||
'commonsIo': 'commons-io:commons-io:2.17.0',
|
||||
'commonsLang': 'commons-lang:commons-lang:2.6',
|
||||
'commonsText': 'org.apache.commons:commons-text:1.14.0',
|
||||
'commonsCollections': 'commons-collections:commons-collections:3.2.2',
|
||||
'caffeine': 'com.github.ben-manes.caffeine:caffeine:3.1.8',
|
||||
'datastaxOssNativeProtocol': 'com.datastax.oss:native-protocol:1.5.1',
|
||||
'datastaxOssCore': 'org.apache.cassandra:java-driver-core:4.19.0',
|
||||
@ -398,6 +397,7 @@ configure(subprojects.findAll {! it.name.startsWith('spark-lineage')}) {
|
||||
exclude group: 'com.typesafe.play', module: 'shaded-asynchttpclient'
|
||||
exclude group: "com.typesafe.akka", module: "akka-protobuf-v3_$playScalaVersion"
|
||||
exclude group: 'com.typesafe.play', module: 'shaded-oauth'
|
||||
exclude group: 'commons-collections', module: 'commons-collections'
|
||||
|
||||
// Tomcat excluded for jetty
|
||||
exclude group: 'org.apache.tomcat.embed', module: 'tomcat-embed-el'
|
||||
@ -408,6 +408,7 @@ configure(subprojects.findAll {! it.name.startsWith('spark-lineage')}) {
|
||||
resolutionStrategy.force 'org.apache.mina:mina-core:2.2.4'
|
||||
resolutionStrategy.force 'org.mozilla:rhino:1.7.12'
|
||||
resolutionStrategy.force 'commons-beanutils:commons-beanutils:1.11.0'
|
||||
resolutionStrategy.force 'org.apache.commons:commons-collections4:4.5.0'
|
||||
resolutionStrategy {
|
||||
force "org.eclipse.jetty:jetty-security:${jettyVersion}"
|
||||
force "org.eclipse.jetty:jetty-server:${jettyVersion}"
|
||||
|
||||
@ -38,7 +38,6 @@ dependencies {
|
||||
runtimeOnly externalDependency.logbackClassic
|
||||
compileOnly externalDependency.lombok
|
||||
compileOnly externalDependency.hazelcast
|
||||
implementation externalDependency.commonsCollections
|
||||
api externalDependency.datastaxOssNativeProtocol
|
||||
api(externalDependency.datastaxOssCore) {
|
||||
exclude group: 'com.fasterxml.jackson.core'
|
||||
|
||||
@ -21,7 +21,7 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
import javax.annotation.Nonnull;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.opensearch.action.search.SearchRequest;
|
||||
import org.opensearch.action.search.SearchResponse;
|
||||
|
||||
@ -30,7 +30,7 @@ import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import lombok.experimental.Accessors;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
|
||||
@Setter
|
||||
@Getter
|
||||
|
||||
@ -63,7 +63,7 @@ import lombok.Getter;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.Value;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.apache.commons.lang3.tuple.Pair;
|
||||
import org.opensearch.action.search.SearchRequest;
|
||||
import org.opensearch.action.search.SearchResponse;
|
||||
|
||||
@ -54,7 +54,7 @@ import javax.annotation.Nullable;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.SneakyThrows;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.springframework.cache.Cache;
|
||||
|
||||
@RequiredArgsConstructor
|
||||
|
||||
@ -22,7 +22,7 @@ import java.util.Optional;
|
||||
import javax.annotation.Nonnull;
|
||||
import javax.annotation.Nullable;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.javatuples.Octet;
|
||||
import org.javatuples.Septet;
|
||||
import org.javatuples.Sextet;
|
||||
|
||||
@ -66,7 +66,7 @@ import javax.annotation.Nonnull;
|
||||
import javax.annotation.Nullable;
|
||||
import lombok.Getter;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.opensearch.action.search.SearchRequest;
|
||||
import org.opensearch.action.search.SearchResponse;
|
||||
import org.opensearch.common.unit.TimeValue;
|
||||
|
||||
@ -58,7 +58,7 @@ import javax.annotation.Nullable;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
|
||||
@Slf4j
|
||||
public class UpdateGraphIndicesService implements SearchIndicesService {
|
||||
|
||||
@ -36,7 +36,7 @@ import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
import lombok.experimental.Accessors;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
|
||||
@Setter
|
||||
@Getter
|
||||
|
||||
@ -45,7 +45,7 @@ import java.util.TreeMap;
|
||||
import java.util.TreeSet;
|
||||
import java.util.stream.Collectors;
|
||||
import javax.annotation.Nonnull;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
|
||||
public class TimelineServiceImpl implements TimelineService {
|
||||
|
||||
|
||||
@ -31,7 +31,6 @@ dependencies {
|
||||
implementation externalDependency.swaggerAnnotations
|
||||
runtimeOnly externalDependency.logbackClassic
|
||||
compileOnly externalDependency.lombok
|
||||
implementation externalDependency.commonsCollections
|
||||
implementation externalDependency.javatuples
|
||||
implementation externalDependency.javaxValidation
|
||||
implementation externalDependency.opentelemetryAnnotations
|
||||
|
||||
@ -34,7 +34,7 @@ import java.util.stream.Stream;
|
||||
import javax.annotation.Nonnull;
|
||||
import javax.annotation.Nullable;
|
||||
import javax.validation.constraints.Null;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
|
||||
public class QueryUtils {
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user