File tree Expand file tree Collapse file tree
src/test/java/org/apache/flink/cdc/composer/flink
flink-cdc-pipeline-connectors
flink-cdc-pipeline-connector-doris
flink-cdc-pipeline-connector-elasticsearch
flink-cdc-pipeline-connector-fluss
flink-cdc-pipeline-connector-iceberg
flink-cdc-pipeline-connector-kafka
flink-cdc-pipeline-connector-mysql
flink-cdc-pipeline-connector-oceanbase
flink-cdc-pipeline-connector-oracle
flink-cdc-pipeline-connector-postgres
flink-cdc-pipeline-connector-starrocks
flink-cdc-source-connectors
flink-connector-mongodb-cdc
src/test/java/org/apache/flink/cdc/connectors/mongodb/utils
flink-connector-mysql-cdc
flink-connector-oracle-cdc
flink-connector-postgres-cdc
flink-connector-sqlserver-cdc
flink-connector-test-util
flink-connector-vitess-cdc
src/test/java/org/apache/flink/cdc/runtime/operators Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4444
4545jobs :
4646 test :
47- runs-on : ubuntu-latest
47+ runs-on : ubuntu-22.04
4848 timeout-minutes : 120
4949 strategy :
5050 max-parallel : 20
Original file line number Diff line number Diff line change @@ -55,6 +55,12 @@ limitations under the License.
5555 <artifactId >flink-test-utils</artifactId >
5656 <version >${flink.version} </version >
5757 <scope >test</scope >
58+ <exclusions >
59+ <exclusion >
60+ <groupId >org.testcontainers</groupId >
61+ <artifactId >testcontainers</artifactId >
62+ </exclusion >
63+ </exclusions >
5864 </dependency >
5965 <dependency >
6066 <groupId >org.apache.flink</groupId >
Original file line number Diff line number Diff line change 5252import org .apache .flink .runtime .testutils .MiniClusterResourceConfiguration ;
5353import org .apache .flink .test .junit5 .MiniClusterExtension ;
5454
55+ import org .apache .flink .shaded .guava31 .com .google .common .collect .ImmutableMap ;
56+
5557import org .junit .jupiter .api .AfterEach ;
5658import org .junit .jupiter .api .BeforeEach ;
5759import org .junit .jupiter .api .extension .RegisterExtension ;
5860import org .junit .jupiter .params .ParameterizedTest ;
5961import org .junit .jupiter .params .provider .EnumSource ;
60- import org .testcontainers .shaded .com .google .common .collect .ImmutableMap ;
6162
6263import java .io .ByteArrayOutputStream ;
6364import java .io .PrintStream ;
Original file line number Diff line number Diff line change 4646import org .apache .flink .runtime .testutils .MiniClusterResourceConfiguration ;
4747import org .apache .flink .test .junit5 .MiniClusterExtension ;
4848
49+ import org .apache .flink .shaded .guava31 .com .google .common .collect .ImmutableMap ;
50+
4951import org .junit .jupiter .api .AfterEach ;
5052import org .junit .jupiter .api .BeforeEach ;
5153import org .junit .jupiter .api .Test ;
5254import org .junit .jupiter .api .extension .RegisterExtension ;
5355import org .junit .jupiter .params .ParameterizedTest ;
5456import org .junit .jupiter .params .provider .EnumSource ;
55- import org .testcontainers .shaded .com .google .common .collect .ImmutableMap ;
5657
5758import java .io .ByteArrayOutputStream ;
5859import java .io .PrintStream ;
Original file line number Diff line number Diff line change @@ -77,12 +77,24 @@ limitations under the License.
7777 <artifactId >flink-test-utils-junit</artifactId >
7878 <version >${flink.version} </version >
7979 <scope >test</scope >
80+ <exclusions >
81+ <exclusion >
82+ <groupId >org.testcontainers</groupId >
83+ <artifactId >testcontainers</artifactId >
84+ </exclusion >
85+ </exclusions >
8086 </dependency >
8187 <dependency >
8288 <groupId >org.apache.flink</groupId >
8389 <artifactId >flink-test-utils</artifactId >
8490 <version >${flink.version} </version >
8591 <scope >test</scope >
92+ <exclusions >
93+ <exclusion >
94+ <groupId >org.testcontainers</groupId >
95+ <artifactId >testcontainers</artifactId >
96+ </exclusion >
97+ </exclusions >
8698 </dependency >
8799 <dependency >
88100 <groupId >org.slf4j</groupId >
Original file line number Diff line number Diff line change @@ -58,12 +58,24 @@ limitations under the License.
5858 <artifactId >flink-test-utils</artifactId >
5959 <version >${flink.version} </version >
6060 <scope >test</scope >
61+ <exclusions >
62+ <exclusion >
63+ <groupId >org.testcontainers</groupId >
64+ <artifactId >testcontainers</artifactId >
65+ </exclusion >
66+ </exclusions >
6167 </dependency >
6268 <dependency >
6369 <groupId >org.apache.flink</groupId >
6470 <artifactId >flink-connector-test-utils</artifactId >
6571 <version >${flink.version} </version >
6672 <scope >test</scope >
73+ <exclusions >
74+ <exclusion >
75+ <groupId >org.testcontainers</groupId >
76+ <artifactId >testcontainers</artifactId >
77+ </exclusion >
78+ </exclusions >
6779 </dependency >
6880
6981 <!-- Jackson Databind -->
Original file line number Diff line number Diff line change @@ -57,6 +57,12 @@ limitations under the License.
5757 <artifactId >flink-test-utils</artifactId >
5858 <version >${flink.version} </version >
5959 <scope >test</scope >
60+ <exclusions >
61+ <exclusion >
62+ <groupId >org.testcontainers</groupId >
63+ <artifactId >testcontainers</artifactId >
64+ </exclusion >
65+ </exclusions >
6066 </dependency >
6167
6268 <dependency >
Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ limitations under the License.
5656 <artifactId >junit-vintage-engine</artifactId >
5757 <groupId >org.junit.vintage</groupId >
5858 </exclusion >
59+ <exclusion >
60+ <groupId >org.testcontainers</groupId >
61+ <artifactId >testcontainers</artifactId >
62+ </exclusion >
5963 </exclusions >
6064 </dependency >
6165
@@ -76,6 +80,12 @@ limitations under the License.
7680 <artifactId >flink-test-utils-junit</artifactId >
7781 <version >${flink.version} </version >
7882 <scope >test</scope >
83+ <exclusions >
84+ <exclusion >
85+ <groupId >org.testcontainers</groupId >
86+ <artifactId >testcontainers</artifactId >
87+ </exclusion >
88+ </exclusions >
7989 </dependency >
8090
8191 <!-- hadoop dependency -->
Original file line number Diff line number Diff line change @@ -74,6 +74,12 @@ limitations under the License.
7474 <artifactId >flink-test-utils</artifactId >
7575 <version >${flink.version} </version >
7676 <scope >test</scope >
77+ <exclusions >
78+ <exclusion >
79+ <groupId >org.testcontainers</groupId >
80+ <artifactId >testcontainers</artifactId >
81+ </exclusion >
82+ </exclusions >
7783 </dependency >
7884
7985 <dependency >
Original file line number Diff line number Diff line change @@ -94,13 +94,25 @@ limitations under the License.
9494 <artifactId >flink-test-utils</artifactId >
9595 <version >${flink.version} </version >
9696 <scope >test</scope >
97+ <exclusions >
98+ <exclusion >
99+ <groupId >org.testcontainers</groupId >
100+ <artifactId >testcontainers</artifactId >
101+ </exclusion >
102+ </exclusions >
97103 </dependency >
98104
99105 <dependency >
100106 <groupId >org.apache.flink</groupId >
101107 <artifactId >flink-connector-test-utils</artifactId >
102108 <version >${flink.version} </version >
103109 <scope >test</scope >
110+ <exclusions >
111+ <exclusion >
112+ <groupId >org.testcontainers</groupId >
113+ <artifactId >testcontainers</artifactId >
114+ </exclusion >
115+ </exclusions >
104116 </dependency >
105117
106118 <dependency >
You can’t perform that action at this time.
0 commit comments