From: Erik-Berndt Scheper Date: Tue, 10 Sep 2013 14:18:47 +0000 (+0200) Subject: Rename envers property to hibernate.export.envers X-Git-Tag: hibernate4-maven-plugin-1.0.3~11 X-Git-Url: https://juplo.de/gitweb/?p=hibernate4-maven-plugin;a=commitdiff_plain;h=0a52dca3dd6729b8b6a43cc3ef3b69eb22755b0a Rename envers property to hibernate.export.envers --- diff --git a/pom.xml b/pom.xml index 1e568092..3e64fe72 100644 --- a/pom.xml +++ b/pom.xml @@ -65,6 +65,10 @@ Victor Tatai vtatai@gmail.com + + Erik-Berndt Scheper + erik.berndt.scheper@gmail.com + diff --git a/src/main/java/de/juplo/plugins/hibernate4/Hbm2DdlMojo.java b/src/main/java/de/juplo/plugins/hibernate4/Hbm2DdlMojo.java index 2174765f..e4a301e7 100644 --- a/src/main/java/de/juplo/plugins/hibernate4/Hbm2DdlMojo.java +++ b/src/main/java/de/juplo/plugins/hibernate4/Hbm2DdlMojo.java @@ -83,7 +83,7 @@ public class Hbm2DdlMojo extends AbstractMojo 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"; + public final static String ENVERS = "hibernate.export.envers"; private final static String MD5S = "schema.md5s"; @@ -280,7 +280,7 @@ public class Hbm2DdlMojo extends AbstractMojo /** * Generate envers schema for auditing tables. * - * @parameter expression="${hibernate.envers}" default-value="false" + * @parameter property="hibernate.export.envers" default-value="false" */ private boolean envers;