HHH-10629 - Spatial not bundled in release bundles
This commit is contained in:
parent
78cab094b9
commit
048268ef1e
|
@ -114,6 +114,15 @@ distributions {
|
|||
// from parent.project( 'hibernate-entitymanager' ).configurations.archives.allArtifacts.files.filter{ file -> !file.name.endsWith('-sources.jar') }
|
||||
// }
|
||||
|
||||
into( 'lib/spatial' ) {
|
||||
from(
|
||||
( parent.project( 'hibernate-spatial' ).configurations.archives.allArtifacts.files.filter{ file -> !file.name.endsWith('-sources.jar') }
|
||||
+ parent.project( 'hibernate-spatial' ).configurations.runtime )
|
||||
- parent.project( 'hibernate-core' ).configurations.runtime
|
||||
- parent.project( 'hibernate-core' ).configurations.archives.allArtifacts.files
|
||||
)
|
||||
}
|
||||
|
||||
into( 'lib/jpa-metamodel-generator' ) {
|
||||
from parent.project( 'hibernate-jpamodelgen' ).configurations.archives.allArtifacts.files.filter{ file -> !file.name.endsWith('-sources.jar') }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue