File tree Expand file tree Collapse file tree 2 files changed +15
-9
lines changed
src/test/java/org/apache/flink/connector/kafka/testutils Expand file tree Collapse file tree 2 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,13 @@ under the License.
171
171
<scope >test</scope >
172
172
</dependency >
173
173
174
+ <dependency >
175
+ <groupId >org.yaml</groupId >
176
+ <artifactId >snakeyaml</artifactId >
177
+ <version >1.31</version >
178
+ <scope >test</scope >
179
+ </dependency >
180
+
174
181
<dependency >
175
182
<groupId >org.apache.flink</groupId >
176
183
<artifactId >flink-test-utils</artifactId >
Original file line number Diff line number Diff line change 23
23
import org .apache .flink .connector .kafka .dynamic .metadata .KafkaMetadataService ;
24
24
import org .apache .flink .connector .kafka .dynamic .metadata .KafkaStream ;
25
25
26
- import org .apache .flink .shaded .jackson2 .org .yaml .snakeyaml .DumperOptions ;
27
- import org .apache .flink .shaded .jackson2 .org .yaml .snakeyaml .TypeDescription ;
28
- import org .apache .flink .shaded .jackson2 .org .yaml .snakeyaml .Yaml ;
29
- import org .apache .flink .shaded .jackson2 .org .yaml .snakeyaml .constructor .Constructor ;
30
- import org .apache .flink .shaded .jackson2 .org .yaml .snakeyaml .nodes .Node ;
31
- import org .apache .flink .shaded .jackson2 .org .yaml .snakeyaml .nodes .SequenceNode ;
32
- import org .apache .flink .shaded .jackson2 .org .yaml .snakeyaml .nodes .Tag ;
33
- import org .apache .flink .shaded .jackson2 .org .yaml .snakeyaml .representer .Representer ;
34
-
35
26
import com .google .common .base .MoreObjects ;
36
27
import com .google .common .collect .ImmutableMap ;
37
28
import org .apache .kafka .clients .CommonClientConfigs ;
38
29
import org .slf4j .Logger ;
39
30
import org .slf4j .LoggerFactory ;
31
+ import org .yaml .snakeyaml .DumperOptions ;
32
+ import org .yaml .snakeyaml .TypeDescription ;
33
+ import org .yaml .snakeyaml .Yaml ;
34
+ import org .yaml .snakeyaml .constructor .Constructor ;
35
+ import org .yaml .snakeyaml .nodes .Node ;
36
+ import org .yaml .snakeyaml .nodes .SequenceNode ;
37
+ import org .yaml .snakeyaml .nodes .Tag ;
38
+ import org .yaml .snakeyaml .representer .Representer ;
40
39
41
40
import java .io .File ;
42
41
import java .io .FileWriter ;
You can’t perform that action at this time.
0 commit comments