Plugin ignores upper- or lower-case mismatches for "type" and "target"
authorKai Moritz <kai@coolibri.de>
Fri, 14 Dec 2012 01:16:44 +0000 (02:16 +0100)
committerKai Moritz <kai@coolibri.de>
Tue, 15 Jan 2013 20:39:36 +0000 (21:39 +0100)
src/main/java/de/juplo/plugins/hibernate4/Hbm2DdlMojo.java

index 7a5e0af..a2306ac 100644 (file)
@@ -479,7 +479,7 @@ public class Hbm2DdlMojo extends AbstractMojo
     Target target = null;
     try
     {
     Target target = null;
     try
     {
-      target = Target.valueOf(this.target);
+      target = Target.valueOf(this.target.toUpperCase());
     }
     catch (IllegalArgumentException e)
     {
     }
     catch (IllegalArgumentException e)
     {
@@ -490,7 +490,7 @@ public class Hbm2DdlMojo extends AbstractMojo
     Type type = null;
     try
     {
     Type type = null;
     try
     {
-      type = Type.valueOf(this.type);
+      type = Type.valueOf(this.type.toUpperCase());
     }
     catch (IllegalArgumentException e)
     {
     }
     catch (IllegalArgumentException e)
     {