I’ve recently converted a project which uses JPA metamodel generation from Java to Kotlin/JVM. I’m a...
m
I’ve recently converted a project which uses JPA metamodel generation from Java to Kotlin/JVM. I’m a little worried about using kapt and its issues with newer JDKs - we’re using Java 16, and there kapt only works with a deprecated JDK flag (--illegal-access=permit). Are there better options to generate JPA metamodels in Kotlin?
To be precise, it’s a mixed project now (Java/Kotlin)