Anyone have any idea why the `jakarta.persistence....
# konsist
e
Anyone have any idea why the
jakarta.persistence.Entity
annotation won't show up?
Copy code
Konsist
        .scopeFromProduction()
        .classes()
        .onEach { println("${it.fullyQualifiedName} ${it.annotations.joinToString { it.fullyQualifiedName }}") }
that's showing all my classes, including entities, but the entity classes are not showing the
@Entity
annotation.
jakarta.persistence.Table
and
jakarta.persistence.EntityListeners
do show, though