Added tutorials of the hibernate-release 4.3.9.Final as integration-tests
[hibernate4-maven-plugin] / src / it / tutorials / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Hibernate, Relational Persistence for Idiomatic Java
4   ~
5   ~ Copyright (c) 2010, Red Hat Inc. or third-party contributors as
6   ~ indicated by the @author tags or express copyright attribution
7   ~ statements applied by the authors.  All third-party contributions are
8   ~ distributed under license by Red Hat Inc.
9   ~
10   ~ This copyrighted material is made available to anyone wishing to use, modify,
11   ~ copy, or redistribute it subject to the terms and conditions of the GNU
12   ~ Lesser General Public License, as published by the Free Software Foundation.
13   ~
14   ~ This program is distributed in the hope that it will be useful,
15   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16   ~ or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
17   ~ for more details.
18   ~
19   ~ You should have received a copy of the GNU Lesser General Public License
20   ~ along with this distribution; if not, write to:
21   ~ Free Software Foundation, Inc.
22   ~ 51 Franklin Street, Fifth Floor
23   ~ Boston, MA  02110-1301  USA
24   -->
25 <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">
26
27     <modelVersion>4.0.0</modelVersion>
28
29     <groupId>org.hibernate.tutorials</groupId>
30     <artifactId>hibernate-tutorials</artifactId>
31     <version>$version</version>
32     <packaging>pom</packaging>
33
34     <name>Hibernate Getting Started Guide Tutorials</name>
35     <description>Aggregator for the Hibernate tutorials presented in the Getting Started Guide</description>
36
37     <properties>
38         <!-- Skip artifact deployment -->
39         <maven.deploy.skip>true</maven.deploy.skip>
40     </properties>
41
42     <modules>
43         <module>basic</module>
44         <module>annotations</module>
45         <module>entitymanager</module>
46         <module>envers</module>
47         <module>osgi</module>
48     </modules>
49
50     <dependencies>
51         <dependency>
52             <groupId>org.hibernate</groupId>
53             <artifactId>hibernate-core</artifactId>
54             <version>$version</version>
55         </dependency>
56
57         <!-- Hibernate uses jboss-logging for logging, for the tutorials we will use the sl4fj-simple backend -->
58         <dependency>
59             <groupId>org.slf4j</groupId>
60             <artifactId>slf4j-simple</artifactId>
61             <version>$slf4j</version>
62         </dependency>
63
64         <!-- The tutorials use JUnit test cases to illustrate usage -->
65         <dependency>
66             <groupId>junit</groupId>
67             <artifactId>junit</artifactId>
68             <version>$junit</version>
69         </dependency>
70
71         <!-- The tutorials use the H2 in-memory database -->
72         <dependency>
73             <groupId>com.h2database</groupId>
74             <artifactId>h2</artifactId>
75             <version>$h2</version>
76         </dependency>
77     </dependencies>
78
79     <build>
80         <testResources>
81             <testResource>
82                 <filtering>false</filtering>
83                 <directory>src/test/java</directory>
84                 <includes>
85                     <include>**/*.xml</include>
86                 </includes>
87             </testResource>
88             <testResource>
89                 <directory>src/test/resources</directory>
90             </testResource>
91         </testResources>
92     </build>
93
94 </project>