HHH-11528 Rename the core feature pack to hibernate-orm-jbossmodules
This commit is contained in:
parent
fdde4d7060
commit
15fc1aa697
|
@ -76,13 +76,13 @@ featurepack {
|
|||
dependency "org.wildfly:wildfly-feature-pack:${project.wildflyVersion}" // It will assume it is "zip" by default
|
||||
}
|
||||
|
||||
task createFeaturePackZip( type: Zip, dependsOn: [featurepack] ) {
|
||||
baseName 'hibernate-orm-modules'
|
||||
task createCoreFeaturePackZip( type: Zip, dependsOn: [featurepack] ) {
|
||||
baseName 'hibernate-core-jbossmodules'
|
||||
from project.fpackStagingDir
|
||||
}
|
||||
|
||||
provision {
|
||||
dependsOn( createFeaturePackZip )
|
||||
dependsOn( createCoreFeaturePackZip )
|
||||
dependsOn( ":hibernate-envers:jar")
|
||||
dependsOn( ":hibernate-core:jar")
|
||||
configuration = file( 'wildfly-server-provisioning.xml' )
|
||||
|
@ -120,7 +120,9 @@ dependencies {
|
|||
publishing {
|
||||
publications {
|
||||
publishedArtifacts {
|
||||
artifact( createFeaturePackZip ) {
|
||||
artifact( createCoreFeaturePackZip ) {
|
||||
artifactId 'hibernate-core-jbossmodules'
|
||||
description 'Main feature pack of Hibernate ORM: hibernate-core and hibernate-envers'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<feature-packs>
|
||||
<feature-pack
|
||||
groupId="org.hibernate"
|
||||
artifactId="hibernate-orm-modules"
|
||||
artifactId="hibernate-core-jbossmodules"
|
||||
version="${hibernate-orm.version}" />
|
||||
<feature-pack
|
||||
groupId="org.wildfly"
|
||||
|
|
Loading…
Reference in New Issue