Revert "HHH-8733 - General build cleanup - hibernate-testing"

This reverts commit 2a9a17c79c.
This commit is contained in:
Steve Ebersole 2013-11-26 17:47:34 -06:00
parent 2a9a17c79c
commit 5f0927fed6
1 changed files with 4 additions and 0 deletions

View File

@ -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
}