@@ -68,15 +68,17 @@ under the License.
68
68
69
69
<!-- IMPORTANT: If you update Flink, remember to update link to its docs in maven-javadoc-plugin <links>
70
70
section, omitting the patch part (so for 1.15.0 use 1.15). -->
71
- <flink .version>1.15.0 </flink .version>
71
+ <flink .version>1.16.3 </flink .version>
72
72
73
73
<target .java.version>11</target .java.version>
74
74
<scala .binary.version>2.12</scala .binary.version>
75
75
<maven .compiler.source>${target.java.version} </maven .compiler.source>
76
76
<maven .compiler.target>${target.java.version} </maven .compiler.target>
77
77
<log4j .version>2.17.2</log4j .version>
78
78
<lombok .version>1.18.22</lombok .version>
79
- <junit .jupiter.version>5.8.1</junit .jupiter.version>
79
+ <junit4 .version>4.13.2</junit4 .version>
80
+ <junit5 .version>5.10.1</junit5 .version>
81
+ <junit .jupiter.version>${junit5.version} </junit .jupiter.version>
80
82
<assertj .core.version>3.21.0</assertj .core.version>
81
83
<mockito .version>4.0.0</mockito .version>
82
84
<wiremock .version>2.27.2</wiremock .version>
@@ -167,24 +169,31 @@ under the License.
167
169
168
170
<dependency >
169
171
<groupId >org.apache.flink</groupId >
170
- <artifactId >flink-table-common </artifactId >
172
+ <artifactId >flink-test-utils </artifactId >
171
173
<version >${flink.version} </version >
172
- <type >test-jar</type >
173
174
<scope >test</scope >
174
175
</dependency >
175
176
176
177
<dependency >
177
178
<groupId >org.apache.flink</groupId >
178
- <artifactId >flink-connector-base</artifactId >
179
+ <artifactId >flink-table-test-utils</artifactId >
180
+ <version >${flink.version} </version >
181
+ <scope >test</scope >
182
+ </dependency >
183
+
184
+ <dependency >
185
+ <groupId >org.apache.flink</groupId >
186
+ <artifactId >flink-table-common</artifactId >
179
187
<version >${flink.version} </version >
180
188
<type >test-jar</type >
181
189
<scope >test</scope >
182
190
</dependency >
183
191
184
192
<dependency >
185
193
<groupId >org.apache.flink</groupId >
186
- <artifactId >flink-table-planner_${scala.binary.version} </artifactId >
194
+ <artifactId >flink-connector-base </artifactId >
187
195
<version >${flink.version} </version >
196
+ <type >test-jar</type >
188
197
<scope >test</scope >
189
198
</dependency >
190
199
@@ -233,9 +242,9 @@ under the License.
233
242
</dependency >
234
243
235
244
<dependency >
236
- <groupId >org.junit.jupiter </groupId >
237
- <artifactId >junit-jupiter-params </artifactId >
238
- <version >${junit.jupiter .version} </version >
245
+ <groupId >org.junit.vintage </groupId >
246
+ <artifactId >junit-vintage-engine </artifactId >
247
+ <version >${junit5 .version} </version >
239
248
<scope >test</scope >
240
249
</dependency >
241
250
@@ -323,6 +332,8 @@ under the License.
323
332
<exclude >**/HttpLookupConnectorOptions.class</exclude >
324
333
<exclude >**/Slf4jHttpPostRequestCallback.class</exclude >
325
334
<exclude >**/SelfSignedTrustManager.class</exclude >
335
+ <exclude >org/apache/calcite**</exclude >
336
+ <exclude >org/apache/flink**</exclude >
326
337
</excludes >
327
338
</configuration >
328
339
<executions >
0 commit comments