1<?xml version="1.0" encoding="UTF-8"?>
2
3<!--
4  ~ JBoss, Home of Professional Open Source.
5  ~ Copyright 2010, Red Hat, Inc., and individual contributors
6  ~ as indicated by the @author tags. See the copyright.txt file in the
7  ~ distribution for a full listing of individual contributors.
8  ~
9  ~ This is free software; you can redistribute it and/or modify it
10  ~ under the terms of the GNU Lesser General Public License as
11  ~ published by the Free Software Foundation; either version 2.1 of
12  ~ the License, or (at your option) any later version.
13  ~
14  ~ This software is distributed in the hope that it will be useful,
15  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
16  ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  ~ Lesser General Public License for more details.
18  ~
19  ~ You should have received a copy of the GNU Lesser General Public
20  ~ License along with this software; if not, write to the Free
21  ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
23  -->
24
25<!-- deprecated module that applications including Hibernate 3 jars might have a dependency on.
26-->
27
28<module xmlns="urn:jboss:module:1.3" name="org.jboss.as.jpa.hibernate" slot="3">
29    <properties>
30        <property name="jboss.api" value="private"/>
31    </properties>
32
33    <resources>
34        <resource-root path="jipijapa-hibernate3-1.0.1.Final.jar"/>
35    </resources>
36
37    <dependencies>
38        <module name="javax.annotation.api"/>
39        <module name="javax.persistence.api"/>
40        <module name="javax.transaction.api"/>
41        <module name="org.hibernate" slot="3" optional="true" services="import"/>  <!-- org.hibernate:3 must be created manually with Hibernate 3 jars -->
42        <module name="org.hibernate.validator"/>
43        <module name="org.infinispan" services="import"/>
44        <module name="org.jboss.as.jpa.spi"/>
45        <module name="org.jboss.as.naming"/>
46        <module name="org.jboss.as.server"/>
47        <module name="org.jboss.jandex"/>
48        <module name="org.jboss.logging"/>
49        <module name="org.jboss.msc"/>
50        <module name="org.jboss.vfs"/>
51    </dependencies>
52</module>
53