Configured the 5.1.17-tutorials as integration-tests for the plugin
[hibernate4-maven-plugin] / src / it / schemaexport-example / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <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
3         <properties>\r
4                 <hibernate.version>4.2.6.Final</hibernate.version>\r
5                 <hibernate.entitymanager.version>4.2.6.Final</hibernate.entitymanager.version>\r
6                 <hibernate.c3p0.version>4.2.6.Final</hibernate.c3p0.version>\r
7                 <hibernate.validator.version>5.0.1.Final</hibernate.validator.version>\r
8                 <hibernate.jpa20.version>1.0.1.Final</hibernate.jpa20.version>\r
9                 <slf4j.version>1.4.2</slf4j.version>\r
10         </properties>\r
11         <modelVersion>4.0.0</modelVersion>\r
12         <groupId>de.test</groupId>\r
13         <artifactId>schemaexport-example</artifactId>\r
14         <packaging>pom</packaging>\r
15         <version>1.0-SNAPSHOT</version>\r
16         <name>Schemaexport Example</name>\r
17         <dependencyManagement>\r
18                 <dependencies>\r
19                         <dependency>\r
20                                 <groupId>org.hibernate</groupId>\r
21                                 <artifactId>hibernate-entitymanager</artifactId>\r
22                                 <version>${hibernate.entitymanager.version}</version>\r
23                                 <type>jar</type>\r
24                                 <exclusions>\r
25                                         <exclusion>\r
26                                                 <groupId>commons-logging</groupId>\r
27                                                 <artifactId>commons-logging</artifactId>\r
28                                         </exclusion>\r
29                                 </exclusions>\r
30                         </dependency>\r
31                         <dependency>\r
32                                 <groupId>org.hibernate</groupId>\r
33                                 <artifactId>hibernate-core</artifactId>\r
34                                 <version>${hibernate.version}</version>\r
35                                 <type>jar</type>\r
36                                 <exclusions>\r
37                                         <exclusion>\r
38                                                 <groupId>commons-logging</groupId>\r
39                                                 <artifactId>commons-logging</artifactId>\r
40                                         </exclusion>\r
41                                 </exclusions>\r
42                         </dependency>\r
43                         <dependency>\r
44                                 <groupId>org.hibernate</groupId>\r
45                                 <artifactId>hibernate-validator</artifactId>\r
46                                 <version>${hibernate.validator.version}</version>\r
47                                 <type>jar</type>\r
48                                 <exclusions>\r
49                                         <exclusion>\r
50                                                 <groupId>commons-logging</groupId>\r
51                                                 <artifactId>commons-logging</artifactId>\r
52                                         </exclusion>\r
53                                 </exclusions>\r
54                         </dependency>\r
55                         <dependency>\r
56                                 <groupId>org.hibernate.javax.persistence</groupId>\r
57                                 <artifactId>hibernate-jpa-2.0-api</artifactId>\r
58                                 <version>${hibernate.jpa20.version}</version>\r
59                                 <type>jar</type>\r
60                         </dependency>\r
61                         <dependency><!-- Logging per SLF4J auf Log4J -->\r
62                                 <groupId>org.slf4j</groupId>\r
63                                 <artifactId>slf4j-log4j12</artifactId>\r
64                                 <version>${slf4j.version}</version>\r
65                                 <type>jar</type>\r
66                         </dependency>\r
67                         <dependency><!-- Commons-Logging ueber SLF4J -->\r
68                                 <groupId>org.slf4j</groupId>\r
69                                 <artifactId>jcl-over-slf4j</artifactId>\r
70                                 <version>${slf4j.version}</version>\r
71                                 <type>jar</type>\r
72                         </dependency>\r
73                         <dependency><!-- Commons-Logging -->\r
74                                 <groupId>commons-logging</groupId>\r
75                                 <artifactId>commons-logging</artifactId>\r
76                                 <version>1.0.4</version>\r
77                                 <type>jar</type>\r
78                         </dependency>\r
79 \r
80                         <dependency>\r
81                                 <groupId>org.hsqldb</groupId>\r
82                                 <artifactId>hsqldb</artifactId>\r
83                                 <version>2.3.0</version>\r
84                         </dependency>\r
85                         <dependency>\r
86                                 <groupId>mysql</groupId>\r
87                                 <artifactId>mysql-connector-java</artifactId>\r
88                                 <version>5.1.6</version>\r
89                                 <type>jar</type>\r
90                         </dependency>\r
91                 </dependencies>\r
92         </dependencyManagement>\r
93         <build>\r
94                 <pluginManagement>\r
95                         <plugins>\r
96                                 <plugin>\r
97                                         <artifactId>maven-compiler-plugin</artifactId>\r
98                                         <configuration>\r
99                                                 <source>1.6</source>\r
100                                                 <target>1.6</target>\r
101                                                 <encoding>UTF-8</encoding>\r
102                                         </configuration>\r
103                                 </plugin>\r
104                         </plugins>\r
105                 </pluginManagement>\r
106         </build>\r
107   <modules>\r
108         <module>schemaexport-example-domain</module>\r
109     <module>schemaexport-example-persistence-impl</module>\r
110    </modules>\r
111 </project>\r