Renemed hibernate.schema.export to hibernate.schema.execute
[hibernate4-maven-plugin] / src / it / dependency test / h4mp / pom.xml
index 4e179d2..6071105 100644 (file)
                <plugins>
                        <plugin>
                                <groupId>de.juplo</groupId>
-                               <artifactId>hibernate4-maven-plugin</artifactId>
+                               <artifactId>hibernate-maven-plugin</artifactId>
                                <version>@project.version@</version>
                                <executions>
                                        <execution>
                                                <goals>
-                                                       <goal>export</goal>
+                                                       <goal>create</goal>
                                                </goals>
                                        </execution>
                                </executions>
                                <configuration>
-                                       <target>NONE</target>
+                                       <persistenceUnit>primary</persistenceUnit>
+                                       <execute>false</execute>
                                        <envers>true</envers>
                                        <format>true</format>
                                        <delimiter>;</delimiter>
-                                       <force>true</force>
-                                       <type>CREATE</type>
-                                       <hibernateDialect>org.hibernate.dialect.PostgreSQL9Dialect</hibernateDialect>
+                                       <drop>false</drop>
+                                       <dialect>org.hibernate.dialect.PostgreSQL9Dialect</dialect>
                                </configuration>
                        </plugin>
                </plugins>