Added integration-test provided by Erik-Berndt Scheper <erik.berndt.scheper@gmail...
[hibernate4-maven-plugin] / src / it / hibernate4-maven-plugin-envers-sample / src / main / resources / META-INF / persistence-jpa.xml
1 <!--
2   ~ Copyright 2013 F.B.A. Scheper.
3   ~
4   ~ Licensed under the Apache License, Version 2.0 (the "License");
5   ~ you may not use this file except in compliance with the License.
6   ~ You may obtain a copy of the License at
7   ~
8   ~     http://www.apache.org/licenses/LICENSE-2.0
9   ~
10   ~ Unless required by applicable law or agreed to in writing, software
11   ~ distributed under the License is distributed on an "AS IS" BASIS,
12   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   ~ See the License for the specific language governing permissions and
14   ~ limitations under the License.
15   -->
16 <persistence xmlns="http://java.sun.com/xml/ns/persistence"
17              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18              xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
19              version="2.0">
20
21     <persistence-unit name="examplePU" transaction-type="JTA">
22         <description>
23             Example persistence unit.
24         </description>
25
26         <class>org.bitbucket.fbascheper.tutorial.envers.Event</class>
27
28         <properties>
29             <!-- These are set using spring config -->
30         </properties>
31
32     </persistence-unit>
33
34 </persistence>