HHH-12317 Move module path of the new Feature packs to org.hibernate.orm
This commit is contained in:
parent
a7a9170e4e
commit
aa4303d5c5
|
@ -6,6 +6,6 @@
|
|||
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
-->
|
||||
<module-alias xmlns="urn:jboss:module:1.3"
|
||||
name="org.hibernate" slot="${minorSlot}"
|
||||
target-name="org.hibernate" target-slot="${slot}"
|
||||
name="org.hibernate.orm" slot="${minorSlot}"
|
||||
target-name="org.hibernate.orm" target-slot="${slot}"
|
||||
/>
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
<?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.-->
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<module name="org.hibernate.orm" services="import" export="true" slot="${minorSlot}"/>
|
||||
</dependencies>
|
||||
|
||||
</module>
|
|
@ -5,7 +5,7 @@
|
|||
~ 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="${slot}">
|
||||
<module xmlns="urn:jboss:module:1.3" name="org.hibernate.orm" slot="${slot}">
|
||||
<resources>
|
||||
<artifact name="${org.hibernate:hibernate-core}"/>
|
||||
<artifact name="${org.hibernate:hibernate-envers}"/>
|
||||
|
@ -29,6 +29,6 @@
|
|||
<module name="org.jboss.vfs"/>
|
||||
<module name="org.javassist" export="true"/>
|
||||
<module name="org.hibernate.commons-annotations"/>
|
||||
<module name="org.hibernate.jipijapa-hibernate5" services="import" slot="${slot}"/>
|
||||
<module name="org.hibernate.orm.jipijapa-hibernate5" services="import" slot="${slot}"/>
|
||||
</dependencies>
|
||||
</module>
|
||||
|
|
|
@ -6,6 +6,6 @@
|
|||
~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
|
||||
-->
|
||||
<module-alias xmlns="urn:jboss:module:1.3"
|
||||
name="org.hibernate.jipijapa-hibernate5" slot="${minorSlot}"
|
||||
target-name="org.hibernate.jipijapa-hibernate5" target-slot="${slot}"
|
||||
name="org.hibernate.orm.jipijapa-hibernate5" slot="${minorSlot}"
|
||||
target-name="org.hibernate.orm.jipijapa-hibernate5" target-slot="${slot}"
|
||||
/>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
~ 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.jipijapa-hibernate5" slot="${slot}">
|
||||
<module xmlns="urn:jboss:module:1.3" name="org.hibernate.orm.jipijapa-hibernate5" slot="${slot}">
|
||||
<properties>
|
||||
<property name="jboss.api" value="private"/>
|
||||
</properties>
|
||||
|
@ -15,7 +15,7 @@
|
|||
</resources>
|
||||
|
||||
<dependencies>
|
||||
<module name="org.hibernate" slot="${slot}"/>
|
||||
<module name="org.hibernate.orm" slot="${slot}"/>
|
||||
<module name="javax.api"/>
|
||||
<module name="javax.annotation.api"/>
|
||||
<module name="javax.enterprise.api"/>
|
||||
|
|
Loading…
Reference in New Issue