File tree Expand file tree Collapse file tree 3 files changed +35
-3
lines changed Expand file tree Collapse file tree 3 files changed +35
-3
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ jobs:
25
25
compile_and_test :
26
26
strategy :
27
27
matrix :
28
+ flink : [ 1.19-SNAPSHOT, 1.20-SNAPSHOT ]
29
+ jdk : [ '8, 11, 17, 21' ]
28
30
include :
29
31
- flink : 1.18-SNAPSHOT
30
32
jdk : ' 8, 11, 17'
31
- - flink : 1.19-SNAPSHOT
32
- jdk : ' 8, 11, 17, 21'
33
33
34
34
uses : apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
35
35
with :
Original file line number Diff line number Diff line change 34
34
flink : 1.19-SNAPSHOT,
35
35
jdk : ' 8, 11, 17, 21' ,
36
36
branch : main
37
+ }, {
38
+ flink : 1.20-SNAPSHOT,
39
+ jdk : ' 8, 11, 17, 21' ,
40
+ branch : main
37
41
}, {
38
42
flink : 1.18.0,
39
43
jdk : ' 8, 11, 17' ,
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ under the License.
22
22
<parent >
23
23
<groupId >org.apache.flink</groupId >
24
24
<artifactId >flink-connector-parent</artifactId >
25
- <version >1.0 .0</version >
25
+ <version >1.1 .0</version >
26
26
</parent >
27
27
28
28
<modelVersion >4.0.0</modelVersion >
@@ -66,6 +66,7 @@ under the License.
66
66
<!-- These 2 properties should be removed together with upgrade of flink-connector-parent to 1.1.x -->
67
67
<flink .surefire.baseArgLine>-XX:+UseG1GC -Xms256m -XX:+IgnoreUnrecognizedVMOptions ${surefire.module.config} </flink .surefire.baseArgLine>
68
68
<surefire .module.config/>
69
+ <spotless .skip>false</spotless .skip>
69
70
</properties >
70
71
71
72
<dependencies >
@@ -426,5 +427,32 @@ under the License.
426
427
<artifactId >directory-maven-plugin</artifactId >
427
428
</plugin >
428
429
</plugins >
430
+
431
+ <pluginManagement >
432
+ <plugins >
433
+ <plugin >
434
+ <groupId >com.diffplug.spotless</groupId >
435
+ <artifactId >spotless-maven-plugin</artifactId >
436
+ <configuration >
437
+ <skip >${spotless.skip} </skip >
438
+ </configuration >
439
+ </plugin >
440
+ </plugins >
441
+ </pluginManagement >
429
442
</build >
443
+
444
+ <profiles >
445
+ <profile >
446
+ <id >java21</id >
447
+ <activation >
448
+ <jdk >[21,)</jdk >
449
+ </activation >
450
+ <properties >
451
+ <!-- Current google format does not run on Java 21.
452
+ Don't upgrade it in this profile because it formats code differently.
453
+ Re-evaluate once support for Java 8 is dropped. -->
454
+ <spotless .skip>true</spotless .skip>
455
+ </properties >
456
+ </profile >
457
+ </profiles >
430
458
</project >
You can’t perform that action at this time.
0 commit comments