diff --git a/hibernate-core/hibernate-core.gradle b/hibernate-core/hibernate-core.gradle index 59f80aa93a..42989565d5 100644 --- a/hibernate-core/hibernate-core.gradle +++ b/hibernate-core/hibernate-core.gradle @@ -1,8 +1,6 @@ apply plugin: 'java' apply plugin: 'antlr' -// todo : we need to jar up hibernate-testing.jar from here - dependencies { compile( libraries.commons_collections ) compile( libraries.jta ) @@ -48,5 +46,14 @@ ideaModule { sourceDirs.add( file( '$buildDir/generated-src/antlr/main' ) ) } +task testJar(type: Jar, dependsOn: compileJava) { + from sourceSets.test.allSource + classifier = 'test' +} + +artifacts { + archives sourcesJar, testJar +} + // http://jira.codehaus.org/browse/GRADLE-1158 test.testReport = false