HHH-9858 - Make sure release bundles contain hibernate-java8
This commit is contained in:
parent
066e13cbb5
commit
efc9c2956c
|
@ -125,6 +125,10 @@ distributions {
|
||||||
from parent.project( 'hibernate-core' ).configurations.provided.files { dep -> dep.name == 'javassist' }
|
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' ) {
|
into( 'lib/jpa' ) {
|
||||||
from parent.project( 'hibernate-entitymanager' ).configurations.archives.allArtifacts.files.filter{ file -> !file.name.endsWith('-sources.jar') }
|
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
|
distZip.dependsOn assembleDocumentation
|
||||||
distTar.dependsOn assembleDocumentation
|
distTar.dependsOn assembleDocumentation
|
||||||
|
|
Loading…
Reference in New Issue