diff --git a/hibernate-core/hibernate-core.gradle b/hibernate-core/hibernate-core.gradle index ed72a51828..e95df0a881 100644 --- a/hibernate-core/hibernate-core.gradle +++ b/hibernate-core/hibernate-core.gradle @@ -174,7 +174,11 @@ compileJava.dependsOn jaxb // create the testing jar task testingJar(type: Jar, dependsOn: compileTestJava) { from sourceSets.test.output + // atm none of these work, the jar includes everything from sourceSets.test.output include '**/org/hibernate/testing/**' + include '**/org/hibernate/testing/*' + include 'org/hibernate/testing/**' + include 'org/hibernate/testing/*' classifier = 'testing' includeEmptyDirs = false }