diff --git a/ebean-core/src/main/java/io/ebeaninternal/server/deploy/meta/DeployBeanProperty.java b/ebean-core/src/main/java/io/ebeaninternal/server/deploy/meta/DeployBeanProperty.java index 36c9710ac..7c15443e7 100644 --- a/ebean-core/src/main/java/io/ebeaninternal/server/deploy/meta/DeployBeanProperty.java +++ b/ebean-core/src/main/java/io/ebeaninternal/server/deploy/meta/DeployBeanProperty.java @@ -1159,7 +1159,7 @@ public class DeployBeanProperty implements DeployBeanPropertyMeta { private boolean matchPlatform(Platform[] platforms, Platform match) { for (Platform platform : platforms) { - if (platform == match) { + if (platform == match || platform == match.base()) { return true; } }