Upgraded Hibernate
[hibernate4-maven-plugin] / src / it / tutorials / envers / 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     <parent>
30         <groupId>org.hibernate.tutorials</groupId>
31         <artifactId>hibernate-tutorials</artifactId>
32         <version>4.3.9.Final</version>
33         <relativePath>../pom.xml</relativePath>
34     </parent>
35
36     <artifactId>hibernate-tutorial-envers</artifactId>
37     <name>Hibernate Envers Tutorial</name>
38     <description>Hibernate tutorial illustrating basic set up and use of Envers</description>
39
40     <properties>
41         <!-- Skip artifact deployment -->
42         <maven.deploy.skip>true</maven.deploy.skip>
43         <h4mp.version>@project.version@</h4mp.version>
44     </properties>
45
46     <dependencies>
47         <dependency>
48             <groupId>org.hibernate</groupId>
49             <artifactId>hibernate-envers</artifactId>
50             <version>4.3.9.Final</version>
51         </dependency>
52         <dependency>
53             <groupId>org.hibernate</groupId>
54             <artifactId>hibernate-entitymanager</artifactId>
55             <version>4.3.9.Final</version>
56         </dependency>
57     </dependencies>
58
59     <build>
60         <plugins>
61             <plugin>
62                 <groupId>de.juplo</groupId>
63                 <artifactId>hibernate-maven-plugin</artifactId>
64                 <version>${h4mp.version}</version>
65                 <executions>
66                     <execution>
67                         <phase>process-test-classes</phase>
68                         <goals>
69                             <goal>create</goal>
70                         </goals>
71                     </execution>
72                 </executions>
73                 <configuration>
74                     <scanTestClasses>true</scanTestClasses>
75                     <dialect>org.hibernate.dialect.H2Dialect</dialect>
76                     <format>true</format>
77                     <username>sa</username>
78                     <password></password>
79                 </configuration>
80             </plugin>
81         </plugins>
82     </build>
83
84 </project>