Skip to content

Commit efc9c29

Browse files
committed
HHH-9858 - Make sure release bundles contain hibernate-java8
1 parent 066e13c commit efc9c29

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

release/release.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@ distributions {
125125
from parent.project( 'hibernate-core' ).configurations.provided.files { dep -> dep.name == 'javassist' }
126126
}
127127

128+
into('lib/java8') {
129+
from parent.project( 'hibernate-java8' ).configurations.archives.allArtifacts.files.filter{ file -> !file.name.endsWith('-sources.jar') }
130+
}
131+
128132
into( 'lib/jpa' ) {
129133
from parent.project( 'hibernate-entitymanager' ).configurations.archives.allArtifacts.files.filter{ file -> !file.name.endsWith('-sources.jar') }
130134
}
@@ -202,6 +206,7 @@ distributions {
202206
}
203207
}
204208
}
209+
from parent.project( 'hibernate-entitymanager' ).configurations.archives.allArtifacts.files.filter{ file -> !file.name.endsWith('-sources.jar') }
205210

206211
distZip.dependsOn assembleDocumentation
207212
distTar.dependsOn assembleDocumentation

0 commit comments

Comments
 (0)