THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
...
- Deprecate Scala 2.11 build in Kafka 2.54.
- Update
build.gradle
to remove all tasks for Scala 2.11 and remove code inbuild.gradle
anddependencies.gradle
that is conditional on Scala 2.11. Deprecate
org.apache.kafka.streams.scala.kstream.Suppressed
in kafka-streams-scala as it is only needed for Scala 2.11 support.- Update Readme not to mention Scala 2.11 as a supported version.
- Remove any other workarounds needed by Scala 2.11 (e.g. a number of methods in `CoreUtils` can be removed).
- Introduce a shim `core` module that targets the default scala version. This useful for applications that do not require a specific Scala version. Java applications that shade Scala dependencies or Java applications that have a single Scala dependency would fall under this category. We will target Scala 2.13 in the initial version of this module.
...