File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,12 @@ With this approach:
4949* slower serialization type due to frequent Kryo fallback
5050* larger savepoint size (again, due to Kryo)
5151
52+ ### Closure cleaner from Spark 3.x
53+
54+ Flink historically used quite an old forked version of the ClosureCleaner for scala lambdas, which has some minor
55+ compatibility issues with Java 17 and Scala 2.13+. This project uses a more recent version, hopefully with less
56+ compatibility issues.
57+
5258### No Legacy DataSet API
5359
5460Sorry, but it's already deprecated and as a community project we have no resources to support it. If you need it,
Original file line number Diff line number Diff line change 1- ThisBuild / version := " 1.15-1 "
1+ ThisBuild / version := " 1.15-2 "
22
33lazy val root = (project in file(" ." ))
44 .settings(
@@ -8,11 +8,11 @@ lazy val root = (project in file("."))
88 libraryDependencies ++= Seq (
99 " org.apache.flink" % " flink-streaming-java" % " 1.15.0" ,
1010 " org.apache.flink" % " flink-java" % " 1.15.0" ,
11- " io.findify" %% " flink-adt" % " 0.6.0 " ,
11+ " io.findify" %% " flink-adt" % " 0.6.1 " ,
1212 " org.scalatest" %% " scalatest" % " 3.2.12" % Test ,
1313 " org.apache.flink" % " flink-test-utils" % " 1.15.0" % Test ,
1414 " org.apache.flink" % " flink-test-utils-junit" % " 1.15.0" % Test ,
15- " com.github.sbt" % " junit-interface" % " 0.13.2 " % Test ,
15+ " com.github.sbt" % " junit-interface" % " 0.13.3 " % Test ,
1616 " org.scala-lang.modules" %% " scala-collection-compat" % " 2.7.0"
1717 ),
1818 libraryDependencies += {
You can’t perform that action at this time.
0 commit comments