|
1 | 1 | module ch.qos.logback.core { |
2 | | - requires static transitive java.xml; |
| 2 | + requires transitive java.xml; |
3 | 3 | requires static java.sql; |
4 | 4 |
|
5 | 5 | // required by the optional SMTPAppenderBase component |
6 | 6 | requires static java.naming; |
7 | 7 |
|
| 8 | + requires static janino; |
| 9 | + requires static commons.compiler; |
| 10 | + |
8 | 11 | // transitive _imposes_ the presence of jakarta.mail on downstream users, |
9 | 12 | // let them declare it if they need it |
10 | 13 | requires static jakarta.mail; |
11 | 14 |
|
12 | 15 | // jakarta.servlet 5.0 is not modular |
13 | 16 | requires static jakarta.servlet; |
14 | 17 |
|
15 | | - requires static janino; |
16 | | - requires static commons.compiler; |
17 | | - |
18 | 18 | exports ch.qos.logback.core; |
19 | 19 | exports ch.qos.logback.core.boolex; |
20 | | - |
21 | 20 |
|
22 | 21 | exports ch.qos.logback.core.encoder; |
23 | 22 |
|
|
26 | 25 |
|
27 | 26 | exports ch.qos.logback.core.filter; |
28 | 27 |
|
29 | | - |
30 | 28 | exports ch.qos.logback.core.joran; |
31 | 29 | exports ch.qos.logback.core.joran.action; |
32 | 30 | exports ch.qos.logback.core.joran.conditional; |
33 | | - |
34 | 31 | exports ch.qos.logback.core.joran.event; |
35 | 32 | exports ch.qos.logback.core.joran.sanity; |
36 | 33 | exports ch.qos.logback.core.joran.spi; |
|
64 | 61 | exports ch.qos.logback.core.testUtil; |
65 | 62 | exports ch.qos.logback.core.util; |
66 | 63 |
|
67 | | - |
68 | | - |
69 | 64 | } |
70 | 65 |
|
0 commit comments