File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed
src/main/java/com/provectus/kafka/ui Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 81
81
<groupId >io.confluent</groupId >
82
82
<artifactId >kafka-json-schema-serializer</artifactId >
83
83
<version >${confluent.version} </version >
84
+ <exclusions >
85
+ <exclusion >
86
+ <groupId >commons-collections</groupId >
87
+ <artifactId >commons-collections</artifactId >
88
+ </exclusion >
89
+ </exclusions >
84
90
</dependency >
85
91
<dependency >
86
92
<groupId >io.confluent</groupId >
135
141
<artifactId >commons-pool2</artifactId >
136
142
<version >${apache.commons.version} </version >
137
143
</dependency >
144
+ <dependency >
145
+ <groupId >org.apache.commons</groupId >
146
+ <artifactId >commons-collections4</artifactId >
147
+ <version >4.4</version >
148
+ </dependency >
138
149
<dependency >
139
150
<groupId >org.testcontainers</groupId >
140
151
<artifactId >testcontainers</artifactId >
238
249
<groupId >org.springframework.security</groupId >
239
250
<artifactId >spring-security-ldap</artifactId >
240
251
</dependency >
241
-
242
-
243
252
<dependency >
244
253
<groupId >org.codehaus.groovy</groupId >
245
254
<artifactId >groovy-jsr223</artifactId >
Original file line number Diff line number Diff line change 23
23
import lombok .EqualsAndHashCode ;
24
24
import lombok .Getter ;
25
25
import lombok .ToString ;
26
- import org .apache .commons .collections .CollectionUtils ;
26
+ import org .apache .commons .collections4 .CollectionUtils ;
27
27
import org .springframework .util .Assert ;
28
28
29
29
@ Getter
Original file line number Diff line number Diff line change 8
8
import java .util .function .Function ;
9
9
import java .util .stream .Stream ;
10
10
import javax .annotation .Nullable ;
11
- import org .apache .commons .collections .CollectionUtils ;
11
+ import org .apache .commons .collections4 .CollectionUtils ;
12
12
import org .opendatadiscovery .oddrn .JdbcUrlParser ;
13
13
import org .opendatadiscovery .oddrn .model .HivePath ;
14
14
import org .opendatadiscovery .oddrn .model .MysqlPath ;
Original file line number Diff line number Diff line change 33
33
import javax .annotation .Nullable ;
34
34
import lombok .RequiredArgsConstructor ;
35
35
import lombok .extern .slf4j .Slf4j ;
36
- import org .apache .commons .collections .CollectionUtils ;
36
+ import org .apache .commons .collections4 .CollectionUtils ;
37
37
import org .apache .commons .lang3 .StringUtils ;
38
38
import org .springframework .boot .context .properties .EnableConfigurationProperties ;
39
39
import org .springframework .core .env .Environment ;
You can’t perform that action at this time.
0 commit comments