HHH-12793 Add a comment about why we ignore javax.activation for now

This commit is contained in:
Guillaume Smet 2018-07-12 12:09:35 +02:00
parent 6d0509bb34
commit be47ba3393
1 changed files with 3 additions and 0 deletions

View File

@ -52,6 +52,9 @@ configurations {
dependencies { dependencies {
compile( project( ':hibernate-core' ) ) { 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' exclude module: 'javax.activation-api'
} }
testCompile( project( ':hibernate-envers' ) ) testCompile( project( ':hibernate-envers' ) )