1 <?xml version="1.0" encoding="UTF-8"?>
3 ~ Hibernate, Relational Persistence for Idiomatic Java
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>.
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">
10 <modelVersion>4.0.0</modelVersion>
12 <groupId>org.hibernate.tutorials</groupId>
13 <artifactId>hibernate-tutorials</artifactId>
14 <version>5.2.18.Final</version>
15 <packaging>pom</packaging>
17 <name>Hibernate Getting Started Guide Tutorials</name>
18 <description>Aggregator for the Hibernate tutorials presented in the Getting Started Guide</description>
21 <!-- Skip artifact deployment -->
22 <maven.deploy.skip>true</maven.deploy.skip>
26 <module>basic</module>
27 <module>annotations</module>
28 <module>entitymanager</module>
29 <module>envers</module>
35 <groupId>org.hibernate</groupId>
36 <artifactId>hibernate-core</artifactId>
37 <version>5.2.18.Final</version>
40 <!-- Hibernate uses jboss-logging for logging, for the tutorials we will use the sl4fj-simple backend -->
42 <groupId>org.slf4j</groupId>
43 <artifactId>slf4j-simple</artifactId>
44 <version>1.7.5</version>
47 <!-- The tutorials use JUnit test cases to illustrate usage -->
49 <groupId>junit</groupId>
50 <artifactId>junit</artifactId>
51 <version>4.12</version>
54 <!-- The tutorials use the H2 in-memory database -->
56 <groupId>com.h2database</groupId>
57 <artifactId>h2</artifactId>
58 <version>1.4.196</version>
65 <filtering>false</filtering>
66 <directory>src/test/java</directory>
68 <include>**/*.xml</include>
72 <directory>src/test/resources</directory>
73 <filtering>true</filtering>