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>
13 <groupId>org.hibernate.tutorials</groupId>
14 <artifactId>hibernate-tutorials</artifactId>
15 <version>5.0.12.Final</version>
16 <relativePath>../pom.xml</relativePath>
19 <artifactId>hibernate-tutorial-hbm</artifactId>
20 <name>Hibernate hbm.xml Tutorial</name>
21 <description>Hibernate tutorial illustrating the use of native APIs and hbm.xml for mapping metadata</description>
24 <!-- Skip artifact deployment -->
25 <maven.deploy.skip>true</maven.deploy.skip>
26 <hibernate-maven-plugin.version>@project.version@</hibernate-maven-plugin.version>
32 <groupId>de.juplo</groupId>
33 <artifactId>hibernate-maven-plugin</artifactId>
34 <version>${hibernate-maven-plugin.version}</version>
37 <phase>process-test-classes</phase>
44 <scanTestClasses>true</scanTestClasses>