I am using kotlin-jpa to generate default constructor to my kotlin entity, however, does are not being generated:
I just used:
id("org.jetbrains.kotlin.plugin.jpa") version "1.3.21"
@Entity
data class PlanSubscription(@Id ...
But event with the kotlin-jpa plugin the constructor is not generated:
No default (no-argument) constructor for class
kotlin.jvmInstead ofkotlin jpa. I edit the question to reflect that I'm already using the kotlin jpa plugin, but the no-arg constructors are not being generated.