kafka-application4s
kafka-application4s copied to clipboard
sbt compile fails on JDK 18+
The build failure is due to the removal of SecurityManager from Java 18. That API is used by sbt 1.4 and lower.
Hence the build results in java.lang.UnsupportedOperationException on JDK 18+.
A fix is to upgrade sbt to a stable version: set sbt.version=1.6.2 in build.properties for example.