HHH-9858 - Make sure release bundles contain hibernate-java8

This commit is contained in:
Steve Ebersole 2015-06-15 12:26:14 -05:00
parent 066e13cbb5
commit efc9c2956c
1 changed files with 5 additions and 0 deletions

View File

@ -125,6 +125,10 @@ distributions {
from parent.project( 'hibernate-core' ).configurations.provided.files { dep -> dep.name == 'javassist' }
}
into('lib/java8') {
from parent.project( 'hibernate-java8' ).configurations.archives.allArtifacts.files.filter{ file -> !file.name.endsWith('-sources.jar') }
}
into( 'lib/jpa' ) {
from parent.project( 'hibernate-entitymanager' ).configurations.archives.allArtifacts.files.filter{ file -> !file.name.endsWith('-sources.jar') }
}
@ -202,6 +206,7 @@ distributions {
}
}
}
from parent.project( 'hibernate-entitymanager' ).configurations.archives.allArtifacts.files.filter{ file -> !file.name.endsWith('-sources.jar') }
distZip.dependsOn assembleDocumentation
distTar.dependsOn assembleDocumentation