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
|
dependency "org.wildfly:wildfly-feature-pack:${project.wildflyVersion}" // It will assume it is "zip" by default
|
||||||
}
|
}
|
||||||
|
|
||||||
task createFeaturePackZip( type: Zip, dependsOn: [featurepack] ) {
|
task createCoreFeaturePackZip( type: Zip, dependsOn: [featurepack] ) {
|
||||||
baseName 'hibernate-orm-modules'
|
baseName 'hibernate-core-jbossmodules'
|
||||||
from project.fpackStagingDir
|
from project.fpackStagingDir
|
||||||
}
|
}
|
||||||
|
|
||||||
provision {
|
provision {
|
||||||
dependsOn( createFeaturePackZip )
|
dependsOn( createCoreFeaturePackZip )
|
||||||
dependsOn( ":hibernate-envers:jar")
|
dependsOn( ":hibernate-envers:jar")
|
||||||
dependsOn( ":hibernate-core:jar")
|
dependsOn( ":hibernate-core:jar")
|
||||||
configuration = file( 'wildfly-server-provisioning.xml' )
|
configuration = file( 'wildfly-server-provisioning.xml' )
|
||||||
|
@ -120,7 +120,9 @@ dependencies {
|
||||||
publishing {
|
publishing {
|
||||||
publications {
|
publications {
|
||||||
publishedArtifacts {
|
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-packs>
|
||||||
<feature-pack
|
<feature-pack
|
||||||
groupId="org.hibernate"
|
groupId="org.hibernate"
|
||||||
artifactId="hibernate-orm-modules"
|
artifactId="hibernate-core-jbossmodules"
|
||||||
version="${hibernate-orm.version}" />
|
version="${hibernate-orm.version}" />
|
||||||
<feature-pack
|
<feature-pack
|
||||||
groupId="org.wildfly"
|
groupId="org.wildfly"
|
||||||
|
|
Loading…
Reference in New Issue