NoArg: Support @MappedSuperclass JPA annotation (KT-19692)

This commit is contained in:
Yan Zhulanow
2017-08-21 19:23:55 +03:00
committed by Yan Zhulanow
parent 3f4ddb006a
commit f84df6381e
+2 -1
View File
@@ -48,7 +48,8 @@ object NoArgConfigurationKeys {
class NoArgCommandLineProcessor : CommandLineProcessor {
companion object {
val SUPPORTED_PRESETS = mapOf("jpa" to listOf("javax.persistence.Entity", "javax.persistence.Embeddable"))
val SUPPORTED_PRESETS = mapOf(
"jpa" to listOf("javax.persistence.Entity", "javax.persistence.Embeddable", "javax.persistence.MappedSuperclass"))
val ANNOTATION_OPTION = CliOption("annotation", "<fqname>", "Annotation qualified names",
required = false, allowMultipleOccurrences = true)