Skip to content

Commit 8b161d6

Browse files
committed
Build against Flink 1.15
1 parent ad06be9 commit 8b161d6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ repositories {
1616
dependencies {
1717
implementation(kotlin("reflect"))
1818

19-
implementation("org.apache.flink:flink-core:1.13.2")
20-
implementation("org.apache.flink:flink-core:1.13.2:tests")
21-
implementation("org.apache.flink:flink-test-utils-junit:1.13.2")
19+
val flinkVersion = "1.15.1"
20+
implementation("org.apache.flink:flink-java:$flinkVersion")
2221

22+
testImplementation("org.apache.flink:flink-test-utils-junit:$flinkVersion")
23+
testImplementation("org.apache.flink:flink-core:$flinkVersion:tests")
2324
testImplementation(platform("org.junit:junit-bom:5.9.1"))
2425
testImplementation("org.junit.jupiter:junit-jupiter")
2526
testImplementation("org.junit.vintage:junit-vintage-engine")

0 commit comments

Comments
 (0)