From be47ba3393bee1a7c8cd70834a15357cb020507c Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Thu, 12 Jul 2018 12:09:35 +0200 Subject: [PATCH] HHH-12793 Add a comment about why we ignore javax.activation for now --- hibernate-osgi/hibernate-osgi.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hibernate-osgi/hibernate-osgi.gradle b/hibernate-osgi/hibernate-osgi.gradle index 5c3f1ac0c5..ba350a9833 100644 --- a/hibernate-osgi/hibernate-osgi.gradle +++ b/hibernate-osgi/hibernate-osgi.gradle @@ -52,6 +52,9 @@ configurations { dependencies { compile( project( ':hibernate-core' ) ) { + // having javax.activation-api as a dependency requires us to have com.sun.activation:javax.activation + // this dependency wasn't there in the 5.2.x bundles so ignoring it for now + // we might reintroduce it at some point if users complain about it exclude module: 'javax.activation-api' } testCompile( project( ':hibernate-envers' ) )