From 73f0e7b29d70825d5b92954fbf691392eac5c826 Mon Sep 17 00:00:00 2001 From: Steve Ebersole Date: Tue, 26 Nov 2013 17:56:30 -0600 Subject: [PATCH] HHH-8733 - General build cleanup - hibernate-testing --- hibernate-testing/hibernate-testing.gradle | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/hibernate-testing/hibernate-testing.gradle b/hibernate-testing/hibernate-testing.gradle index 16c08b1ec0..4fe7214789 100644 --- a/hibernate-testing/hibernate-testing.gradle +++ b/hibernate-testing/hibernate-testing.gradle @@ -11,10 +11,18 @@ dependencies { } // todo : Fold into hibernate-core and publish in separate publications -// once http://issues.gradle.org/browse/GRADLE-2966 is resolved +// once http://issues.gradle.org/browse/GRADLE-2966 is resolved; +// that will allow us to keep the same artifactId and publish the pom +// with proper dependencies -jar { - manifest { - instruction 'Bundle-Description', 'Hibernate ORM Testing' - } +def pomName() { + return 'Hibernate ORM Testing' +} + +def pomDescription() { + return 'Support for testing Hibernate ORM functionality' +} + +def osgiDescription() { + return pomDescription() } \ No newline at end of file