<name>Stephen Johnson</name>
<email>stejohns@redhat.com</email>
</contributor>
+ <contributor>
+ <name>Victor Tatai</name>
+ <email>vtatai@gmail.com</email>
+ </contributor>
</contributors>
<distributionManagement>
<artifactId>hibernate-core</artifactId>
<version>${hibernate-core.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-envers</artifactId>
+ <version>${hibernate-core.version}</version>
+ </dependency>
<dependency>
<groupId>org.scannotation</groupId>
<artifactId>scannotation</artifactId>
import org.apache.maven.project.MavenProject;
import org.hibernate.cfg.Configuration;
import org.hibernate.cfg.NamingStrategy;
+import org.hibernate.envers.configuration.AuditConfiguration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
import org.hibernate.tool.hbm2ddl.SchemaExport.Type;
import org.hibernate.tool.hbm2ddl.Target;
public final static String PASSWORD = "hibernate.connection.password";
public final static String DIALECT = "hibernate.dialect";
public final static String NAMING_STRATEGY="hibernate.ejb.naming_strategy";
+ public final static String ENVERS = "hibernate.envers";
private final static String MD5S = "schema.md5s";
*/
private boolean format;
+ /**
+ * Generate envers schema for auditing tables.
+ *
+ * @parameter expression="${hibernate.envers}" default-value="false"
+ */
+ private boolean envers;
@Override
public void execute()
getLog().debug("Using the value " + hibernateNamingStrategy);
properties.setProperty(NAMING_STRATEGY, hibernateNamingStrategy);
}
+ if (envers)
+ {
+ if (properties.containsKey(ENVERS))
+ getLog().debug(
+ "Overwriting property " +
+ ENVERS + "=" + properties.getProperty(ENVERS) +
+ " with the value " + envers
+ );
+ else
+ getLog().debug("Using the value " + envers);
+ properties.setProperty(ENVERS, Boolean.toString(envers));
+ }
/** The generated SQL varies with the dialect! */
if (md5s.containsKey(DIALECT))
md5s.put(DIALECT, properties.getProperty(DIALECT));
}
+ /** The generated SQL varies with the envers-configuration */
+ if (md5s.containsKey(ENVERS))
+ {
+ String envers = properties.getProperty(ENVERS);
+ if (md5s.get(ENVERS).equals(envers))
+ getLog().debug("Envers unchanged.");
+ else
+ {
+ getLog().debug("Envers changed: " + envers);
+ modified = true;
+ md5s.put(ENVERS, envers);
+ }
+ }
+ else
+ {
+ modified = true;
+ md5s.put(ENVERS, properties.getProperty(ENVERS));
+ }
+
if (properties.isEmpty())
{
getLog().error("No properties set!");
*/
Thread.currentThread().setContextClassLoader(classLoader);
+ config.buildMappings();
+
+ if ("true".equals(properties.getProperty(ENVERS)))
+ {
+ getLog().debug("Using envers");
+ AuditConfiguration.getFor(config);
+ }
+
SchemaExport export = new SchemaExport(config, connection);
export.setOutputFile(outputFile);
export.setDelimiter(delimiter);