Configured the 5.0.12-tutorials as integration-test for the plugin
[hibernate4-maven-plugin] / src / it / tutorials-5.0.12 / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Hibernate, Relational Persistence for Idiomatic Java
4   ~
5   ~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
6   ~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
7   -->
8 <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/xsd/maven-4.0.0.xsd">
9
10     <modelVersion>4.0.0</modelVersion>
11
12     <groupId>org.hibernate.tutorials</groupId>
13     <artifactId>hibernate-tutorials</artifactId>
14     <version>5.0.12.Final</version>
15     <packaging>pom</packaging>
16
17     <name>Hibernate Getting Started Guide Tutorials</name>
18     <description>Aggregator for the Hibernate tutorials presented in the Getting Started Guide</description>
19
20     <properties>
21         <!-- Skip artifact deployment -->
22         <maven.deploy.skip>true</maven.deploy.skip>
23     </properties>
24
25     <modules>
26         <module>basic</module>
27         <module>annotations</module>
28         <module>entitymanager</module>
29         <module>envers</module>
30         <module>osgi</module>
31     </modules>
32
33     <dependencies>
34         <dependency>
35             <groupId>org.hibernate</groupId>
36             <artifactId>hibernate-core</artifactId>
37             <version>5.0.12.Final</version>
38         </dependency>
39
40         <!-- Hibernate uses jboss-logging for logging, for the tutorials we will use the sl4fj-simple backend -->
41         <dependency>
42             <groupId>org.slf4j</groupId>
43             <artifactId>slf4j-simple</artifactId>
44             <version>1.7.5</version>
45         </dependency>
46
47         <!-- The tutorials use JUnit test cases to illustrate usage -->
48         <dependency>
49             <groupId>junit</groupId>
50             <artifactId>junit</artifactId>
51             <version>4.11</version>
52         </dependency>
53
54         <!-- The tutorials use the H2 in-memory database -->
55         <dependency>
56             <groupId>com.h2database</groupId>
57             <artifactId>h2</artifactId>
58             <version>1.3.176</version>
59         </dependency>
60     </dependencies>
61
62     <build>
63         <testResources>
64             <testResource>
65                 <filtering>false</filtering>
66                 <directory>src/test/java</directory>
67                 <includes>
68                     <include>**/*.xml</include>
69                 </includes>
70             </testResource>
71             <testResource>
72                 <directory>src/test/resources</directory>
73                 <filtering>true</filtering>
74             </testResource>
75         </testResources>
76     </build>
77
78 </project>