diff --git a/README.adoc b/README.adoc
index f45a449..2d381f7 100644
--- a/README.adoc
+++ b/README.adoc
@@ -545,6 +545,8 @@ apply plugin: 'kotlin-allopen'
allOpen {
annotation("javax.persistence.Entity")
+ annotation('javax.persistence.Embeddable')
+ annotation('javax.persistence.MappedSuperclass')
}
----
@@ -563,6 +565,8 @@ Or with Maven:
+
+
diff --git a/build.gradle b/build.gradle
index e74caa2..ba51af6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -40,6 +40,8 @@ compileTestKotlin {
allOpen {
annotation('javax.persistence.Entity')
+ annotation('javax.persistence.Embeddable')
+ annotation('javax.persistence.MappedSuperclass')
}
repositories {
diff --git a/pom.xml b/pom.xml
index d2eb696..f10d646 100644
--- a/pom.xml
+++ b/pom.xml
@@ -111,6 +111,8 @@
+
+