HHH-11439 added javax.interceptor to OSGi feature dependencies
This commit is contained in:
parent
5e206666f0
commit
cf1f10336e
|
@ -51,6 +51,9 @@ dependencies {
|
|||
compile "org.osgi:org.osgi.compendium:${osgiCoreVersion}"
|
||||
compile "net.bytebuddy:byte-buddy:${byteBuddyVersion}"
|
||||
|
||||
// Needed by JBoss JTA
|
||||
runtime( libraries.interceptor )
|
||||
|
||||
testCompile "org.ops4j.pax.exam:pax-exam:${paxExamVersion}"
|
||||
testCompile "org.ops4j.pax.exam:pax-exam-junit4:${paxExamVersion}"
|
||||
testCompile "org.ops4j.pax.exam:pax-exam-container-karaf:${paxExamVersion}"
|
||||
|
@ -176,6 +179,13 @@ karafFeatures {
|
|||
}
|
||||
dependency = true
|
||||
}
|
||||
bundle {
|
||||
match {
|
||||
group = 'javax.interceptor'
|
||||
module = 'javax.interceptor-api'
|
||||
}
|
||||
dependency = true
|
||||
}
|
||||
bundle {
|
||||
match {
|
||||
group = 'org.jboss.spec.javax.transaction'
|
||||
|
|
|
@ -57,6 +57,7 @@ ext {
|
|||
jta: 'org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.0.1.Final',
|
||||
validation: 'javax.validation:validation-api:1.1.0.Final',
|
||||
jacc: 'org.jboss.spec.javax.security.jacc:jboss-jacc-api_1.4_spec:1.0.2.Final',
|
||||
interceptor: 'javax.interceptor:javax.interceptor-api:1.2',
|
||||
|
||||
// logging
|
||||
logging: 'org.jboss.logging:jboss-logging:3.3.0.Final',
|
||||
|
|
Loading…
Reference in New Issue