Added integration-test provided by Guido Wimmel <Wimmel.Guido@swm.de>
[hibernate4-maven-plugin] / src / it / schemaexport-example / pom.xml
diff --git a/src/it/schemaexport-example/pom.xml b/src/it/schemaexport-example/pom.xml
new file mode 100644 (file)
index 0000000..7981214
--- /dev/null
@@ -0,0 +1,111 @@
+<?xml version="1.0" encoding="UTF-8"?>\r
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">\r
+       <properties>\r
+               <hibernate.version>4.2.6.Final</hibernate.version>\r
+               <hibernate.entitymanager.version>4.2.6.Final</hibernate.entitymanager.version>\r
+               <hibernate.c3p0.version>4.2.6.Final</hibernate.c3p0.version>\r
+               <hibernate.validator.version>5.0.1.Final</hibernate.validator.version>\r
+               <hibernate.jpa20.version>1.0.1.Final</hibernate.jpa20.version>\r
+               <slf4j.version>1.4.2</slf4j.version>\r
+       </properties>\r
+       <modelVersion>4.0.0</modelVersion>\r
+       <groupId>de.test</groupId>\r
+       <artifactId>schemaexport-example</artifactId>\r
+       <packaging>pom</packaging>\r
+       <version>1.0-SNAPSHOT</version>\r
+       <name>Schemaexport Example</name>\r
+       <dependencyManagement>\r
+               <dependencies>\r
+                       <dependency>\r
+                               <groupId>org.hibernate</groupId>\r
+                               <artifactId>hibernate-entitymanager</artifactId>\r
+                               <version>${hibernate.entitymanager.version}</version>\r
+                               <type>jar</type>\r
+                               <exclusions>\r
+                                       <exclusion>\r
+                                               <groupId>commons-logging</groupId>\r
+                                               <artifactId>commons-logging</artifactId>\r
+                                       </exclusion>\r
+                               </exclusions>\r
+                       </dependency>\r
+                       <dependency>\r
+                               <groupId>org.hibernate</groupId>\r
+                               <artifactId>hibernate-core</artifactId>\r
+                               <version>${hibernate.version}</version>\r
+                               <type>jar</type>\r
+                               <exclusions>\r
+                                       <exclusion>\r
+                                               <groupId>commons-logging</groupId>\r
+                                               <artifactId>commons-logging</artifactId>\r
+                                       </exclusion>\r
+                               </exclusions>\r
+                       </dependency>\r
+                       <dependency>\r
+                               <groupId>org.hibernate</groupId>\r
+                               <artifactId>hibernate-validator</artifactId>\r
+                               <version>${hibernate.validator.version}</version>\r
+                               <type>jar</type>\r
+                               <exclusions>\r
+                                       <exclusion>\r
+                                               <groupId>commons-logging</groupId>\r
+                                               <artifactId>commons-logging</artifactId>\r
+                                       </exclusion>\r
+                               </exclusions>\r
+                       </dependency>\r
+                       <dependency>\r
+                               <groupId>org.hibernate.javax.persistence</groupId>\r
+                               <artifactId>hibernate-jpa-2.0-api</artifactId>\r
+                               <version>${hibernate.jpa20.version}</version>\r
+                               <type>jar</type>\r
+                       </dependency>\r
+                       <dependency><!-- Logging per SLF4J auf Log4J -->\r
+                               <groupId>org.slf4j</groupId>\r
+                               <artifactId>slf4j-log4j12</artifactId>\r
+                               <version>${slf4j.version}</version>\r
+                               <type>jar</type>\r
+                       </dependency>\r
+                       <dependency><!-- Commons-Logging ueber SLF4J -->\r
+                               <groupId>org.slf4j</groupId>\r
+                               <artifactId>jcl-over-slf4j</artifactId>\r
+                               <version>${slf4j.version}</version>\r
+                               <type>jar</type>\r
+                       </dependency>\r
+                       <dependency><!-- Commons-Logging -->\r
+                               <groupId>commons-logging</groupId>\r
+                               <artifactId>commons-logging</artifactId>\r
+                               <version>1.0.4</version>\r
+                               <type>jar</type>\r
+                       </dependency>\r
+\r
+                       <dependency>\r
+                               <groupId>org.hsqldb</groupId>\r
+                               <artifactId>hsqldb</artifactId>\r
+                               <version>2.3.0</version>\r
+                       </dependency>\r
+                       <dependency>\r
+                               <groupId>mysql</groupId>\r
+                               <artifactId>mysql-connector-java</artifactId>\r
+                               <version>5.1.6</version>\r
+                               <type>jar</type>\r
+                       </dependency>\r
+               </dependencies>\r
+       </dependencyManagement>\r
+       <build>\r
+               <pluginManagement>\r
+                       <plugins>\r
+                               <plugin>\r
+                                       <artifactId>maven-compiler-plugin</artifactId>\r
+                                       <configuration>\r
+                                               <source>1.6</source>\r
+                                               <target>1.6</target>\r
+                                               <encoding>UTF-8</encoding>\r
+                                       </configuration>\r
+                               </plugin>\r
+                       </plugins>\r
+               </pluginManagement>\r
+       </build>\r
+  <modules>\r
+       <module>schemaexport-example-domain</module>\r
+    <module>schemaexport-example-persistence-impl</module>\r
+   </modules>\r
+</project>\r