Found annotated classes get logged now
authorKai Moritz <kai@coolibri.de>
Thu, 29 Nov 2012 17:23:59 +0000 (18:23 +0100)
committerKai Moritz <kai@coolibri.de>
Tue, 11 Dec 2012 20:56:59 +0000 (21:56 +0100)
src/main/java/de/juplo/plugins/hibernate4/Hbm2DdlMojo.java

index f016459..04c8517 100644 (file)
@@ -29,11 +29,11 @@ import java.sql.DriverPropertyInfo;
 import java.sql.SQLException;
 import java.sql.SQLFeatureNotSupportedException;
 import java.util.Enumeration;
-import java.util.HashSet;
 import java.util.List;
 import java.util.Map.Entry;
 import java.util.Properties;
 import java.util.Set;
+import java.util.TreeSet;
 import java.util.logging.Logger;
 import javax.persistence.Embeddable;
 import javax.persistence.Entity;
@@ -195,7 +195,7 @@ public class Hbm2DdlMojo extends AbstractMojo
       throw new MojoExecutionException("Cannot scan for annotated classes in " + outputDirectory + ": directory does not exist!");
 
 
-    Set<String> classes = new HashSet<String>();
+    Set<String> classes = new TreeSet<String>();
     try
     {
       AnnotationDB db = new AnnotationDB();
@@ -217,6 +217,10 @@ public class Hbm2DdlMojo extends AbstractMojo
     if (classes.isEmpty())
       throw new MojoFailureException("No annotated classes found in directory " + outputDirectory);
 
+    getLog().info("Detected classes with mapping-annotations:");
+    for (String classname : classes)
+      getLog().info("  " + classname);
+
     Properties properties = new Properties();
 
     /** Try to read configuration from properties-file */