Dear developers who are using `jackson-module-kotl...
# library-development
w
Dear developers who are using
jackson-module-kotlin
in libraries. As the maintainer, I have received several binary compatibility issues caused by code that initializes
KotlinModule
from its constructor. On the other hand,
KotlinModule
constructors have been deprecated for over 2 years now. The recommended initialization method for
KotlinModule
is either of the following (available since 2.12) • Using the builder • Using the `kotlinModule` function • (or Use other extensions) I would appreciate it if you all could modify the code. Thank you.
❤️ 2
If these methods are not available, you can also use
kotlin-reflect
and call the primary constructor with
callBy(emptyMap())
.