|
28 | 28 | <name>Apache Log4j JUL Adapter</name>
|
29 | 29 | <description>The Apache Log4j implementation of java.util.logging</description>
|
30 | 30 |
|
31 |
| - <properties> |
32 |
| - <log4jParentDir>${basedir}/..</log4jParentDir> |
33 |
| - |
34 |
| - <!-- |
35 |
| - ~ OSGi and JPMS options |
36 |
| - --> |
37 |
| - <bnd-extra-package-options> |
38 |
| - <!-- Log4j Core is optional --> |
39 |
| - org.apache.logging.log4j.core.*;resolution:=optional |
40 |
| - </bnd-extra-package-options> |
41 |
| - |
42 |
| - <!-- PTS requires using the JUnit Platform, which interferes with JUL initialization --> |
43 |
| - <predictive.test.selection.enabled>false</predictive.test.selection.enabled> |
44 |
| - </properties> |
45 |
| - |
46 | 31 | <dependencies>
|
| 32 | + |
47 | 33 | <dependency>
|
48 | 34 | <groupId>org.apache.logging.log4j</groupId>
|
49 | 35 | <artifactId>log4j-api</artifactId>
|
50 | 36 | </dependency>
|
| 37 | + |
51 | 38 | <dependency>
|
52 | 39 | <groupId>org.apache.logging.log4j</groupId>
|
53 |
| - <artifactId>log4j-core</artifactId> |
54 |
| - <optional>true</optional> |
| 40 | + <artifactId>log4j-kit</artifactId> |
55 | 41 | </dependency>
|
| 42 | + |
56 | 43 | <dependency>
|
57 | 44 | <groupId>org.assertj</groupId>
|
58 | 45 | <artifactId>assertj-core</artifactId>
|
59 | 46 | <scope>test</scope>
|
60 | 47 | </dependency>
|
61 |
| - <!-- Required for AsyncLogger testing --> |
62 |
| - <dependency> |
63 |
| - <groupId>com.lmax</groupId> |
64 |
| - <artifactId>disruptor</artifactId> |
65 |
| - <scope>test</scope> |
66 |
| - </dependency> |
| 48 | + |
67 | 49 | <dependency>
|
68 | 50 | <groupId>org.hamcrest</groupId>
|
69 | 51 | <artifactId>hamcrest</artifactId>
|
70 | 52 | <scope>test</scope>
|
71 | 53 | </dependency>
|
| 54 | + |
72 | 55 | <dependency>
|
73 | 56 | <groupId>junit</groupId>
|
74 | 57 | <artifactId>junit</artifactId>
|
75 | 58 | <scope>test</scope>
|
76 | 59 | </dependency>
|
| 60 | + |
77 | 61 | <dependency>
|
78 | 62 | <groupId>org.apache.logging.log4j</groupId>
|
79 | 63 | <artifactId>log4j-async-logger</artifactId>
|
80 | 64 | <scope>test</scope>
|
81 | 65 | </dependency>
|
| 66 | + |
| 67 | + <dependency> |
| 68 | + <groupId>org.apache.logging.log4j</groupId> |
| 69 | + <artifactId>log4j-core</artifactId> |
| 70 | + <scope>test</scope> |
| 71 | + </dependency> |
| 72 | + |
82 | 73 | <dependency>
|
83 | 74 | <groupId>org.apache.logging.log4j</groupId>
|
84 | 75 | <artifactId>log4j-core-test</artifactId>
|
|
0 commit comments