File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,14 @@ apply plugin: 'osgi'
18
18
19
19
archivesBaseName = ' bson'
20
20
21
+ jar {
22
+ manifest {
23
+ instruction ' Import-Package' ,
24
+ ' javax.xml.bind.*' ,
25
+ ' org.slf4j;resolution:=optional'
26
+ }
27
+ }
28
+
21
29
modifyPom {
22
30
project {
23
31
name ' BSON'
Original file line number Diff line number Diff line change @@ -30,11 +30,13 @@ jar {
30
30
manifest {
31
31
instruction ' Import-Package' ,
32
32
' org.bson.*' , // unfortunate that this is necessary, but if it's left out then it's not included
33
+ ' javax.crypto.*' ,
34
+ ' javax.crypto.spec.*' ,
33
35
' javax.management.*' ,
34
36
' javax.net.*' ,
35
37
' javax.net.ssl.*' ,
36
38
' javax.security.sasl.*' ,
37
- ' javax.security.auth.*' ,
39
+ ' javax.security.auth.callback. *' ,
38
40
' org.ietf.jgss.*' ,
39
41
' io.netty.*;resolution:=optional' ,
40
42
' org.slf4j;resolution:=optional'
Original file line number Diff line number Diff line change @@ -46,11 +46,14 @@ sourceSets {
46
46
jar {
47
47
manifest {
48
48
instruction ' Import-Package' ,
49
+ ' javax.xml.bind.*' ,
50
+ ' javax.crypto.*' ,
51
+ ' javax.crypto.spec.*' ,
49
52
' javax.management.*' ,
50
53
' javax.net.*' ,
51
54
' javax.net.ssl.*' ,
52
55
' javax.security.sasl.*' ,
53
- ' javax.security.auth.*' ,
56
+ ' javax.security.auth.callback. *' ,
54
57
' org.ietf.jgss.*' ,
55
58
' io.netty.*;resolution:=optional' ,
56
59
' org.slf4j;resolution:=optional'
You can’t perform that action at this time.
0 commit comments