22 lines
892 B
XML
22 lines
892 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Hibernate, Relational Persistence for Idiomatic Java
|
|
~
|
|
~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
|
|
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
|
-->
|
|
<module xmlns="urn:jboss:module:1.3" name="org.hibernate" slot="${minorSlot}">
|
|
|
|
<properties>
|
|
<property name="jboss.api" value="deprecated"/>
|
|
<!-- This module is using the old name. Please use "org.hibernate.orm" in the future,
|
|
and declare the dependency on "org.hibernate.envers" explicitly as well if it's used -->
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<module name="org.hibernate.orm" services="import" export="true" slot="${minorSlot}"/>
|
|
<module name="org.hibernate.envers" services="import" export="true" slot="${minorSlot}"/>
|
|
</dependencies>
|
|
|
|
</module>
|