1 <?xml version="1.0" encoding="UTF-8"?>
3 ~ Hibernate, Relational Persistence for Idiomatic Java
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.
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.
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
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
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">
27 <modelVersion>4.0.0</modelVersion>
29 <groupId>org.hibernate.tutorials</groupId>
30 <artifactId>hibernate-tutorials</artifactId>
31 <version>4.3.9.Final</version>
32 <packaging>pom</packaging>
34 <name>Hibernate Getting Started Guide Tutorials</name>
35 <description>Aggregator for the Hibernate tutorials presented in the Getting Started Guide</description>
38 <!-- Skip artifact deployment -->
39 <maven.deploy.skip>true</maven.deploy.skip>
43 <module>basic</module>
44 <module>annotations</module>
45 <module>entitymanager</module>
46 <module>envers</module>
47 <module>osgi/unmanaged-native</module>
48 <module>osgi/unmanaged-jpa</module>
49 <module>osgi/managed-jpa</module>
54 <groupId>org.hibernate</groupId>
55 <artifactId>hibernate-core</artifactId>
56 <version>4.3.9.Final</version>
59 <!-- Hibernate uses jboss-logging for logging, for the tutorials we will use the sl4fj-simple backend -->
61 <groupId>org.slf4j</groupId>
62 <artifactId>slf4j-simple</artifactId>
63 <version>1.7.12</version>
66 <!-- The tutorials use JUnit test cases to illustrate usage -->
68 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
70 <version>4.12</version>
73 <!-- The tutorials use the H2 in-memory database -->
75 <groupId>com.h2database</groupId>
76 <artifactId>h2</artifactId>
77 <version>1.4.187</version>
84 <filtering>false</filtering>
85 <directory>src/test/java</directory>
87 <include>**/*.xml</include>
91 <directory>src/test/resources</directory>
92 <filtering>true</filtering>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-compiler-plugin</artifactId>
99 <version>3.3</version>
103 <encoding>utf8</encoding>
104 <showWarnings>true</showWarnings>