HHH-12990 Remove unnecessary dependencies to JSR-250 when generating JAXB classes

It seems these dependencies were not necessary at all, even before the
previous patches.
This commit is contained in:
Yoann Rodière 2018-10-17 09:05:13 +02:00 committed by Guillaume Smet
parent 0f54fcc484
commit acc7934173
3 changed files with 0 additions and 3 deletions

View File

@ -68,7 +68,6 @@ ext {
interceptor: 'javax.interceptor:javax.interceptor-api:1.2',
// required by JAXB from JDK 9 as it is not available anymore in JDK 9
activation: 'javax.activation:javax.activation-api:1.2.0',
jsr250_api: 'javax.annotation:jsr250-api:1.0',
// logging
logging: 'org.jboss.logging:jboss-logging:3.3.2.Final',

View File

@ -51,7 +51,6 @@ dependencies {
xjc( libraries.jaxb2_basics )
xjc( libraries.jaxb2_basics_ant )
xjc( libraries.activation )
xjc( libraries.jsr250_api )
provided( libraries.jacc )
provided( libraries.validation )

View File

@ -24,7 +24,6 @@ dependencies {
xjc( libraries.jaxb2_basics )
xjc( libraries.jaxb2_basics_ant )
xjc( libraries.activation )
xjc( libraries.jsr250_api )
testCompile libraries.junit
testCompile libraries.jpa