Most likely, you use something like jackson-module-kotlin which depends on 1.3.72 kotlin-stdlib and kotlin-reflect libraries.
I’m trying to get rid of similar issue but with no luck, currently. Old versions gone away from the dependency tree after explicit declaration of 1.4.10 version for kotlin-stdlib, kotlin-stdlib-common and kotlin-reflect libraries, but now I end up with “java.lang.AssertionError: Built-in class kotlin.Any is not found” inside jdbi3-kotlin module, which uses kotlin-reflect library as well during test phase.
UPD: error disappears after switching execution runtime from java 11 to java 8. Version 1.3.72 runs without errors under java 11 (jvmTarget in kotlin-maven-plugin set to 1.8 in both cases).