|
49 | 49 | </dependencyManagement> |
50 | 50 |
|
51 | 51 | <dependencies> |
| 52 | + |
52 | 53 | <dependency> |
53 | 54 | <groupId>org.osgi</groupId> |
54 | 55 | <artifactId>org.osgi.core</artifactId> |
55 | 56 | <scope>provided</scope> |
56 | 57 | </dependency> |
| 58 | + |
57 | 59 | <dependency> |
58 | 60 | <groupId>org.apache.logging.log4j</groupId> |
59 | 61 | <artifactId>log4j-api</artifactId> |
60 | 62 | </dependency> |
| 63 | + |
61 | 64 | <dependency> |
62 | 65 | <groupId>org.slf4j</groupId> |
63 | 66 | <artifactId>slf4j-api</artifactId> |
64 | 67 | </dependency> |
| 68 | + |
65 | 69 | <dependency> |
66 | 70 | <groupId>org.apache.logging.log4j</groupId> |
67 | | - <artifactId>log4j-core</artifactId> |
68 | | - <scope>runtime</scope> |
| 71 | + <artifactId>log4j-api-test</artifactId> |
| 72 | + <scope>test</scope> |
69 | 73 | </dependency> |
| 74 | + |
70 | 75 | <dependency> |
71 | 76 | <groupId>org.apache.logging.log4j</groupId> |
72 | | - <artifactId>log4j-api-test</artifactId> |
| 77 | + <artifactId>log4j-core</artifactId> |
73 | 78 | <scope>test</scope> |
74 | | - <exclusions> |
75 | | - <exclusion> |
76 | | - <groupId>org.slf4j</groupId> |
77 | | - <artifactId>slf4j-api</artifactId> |
78 | | - </exclusion> |
79 | | - </exclusions> |
80 | 79 | </dependency> |
| 80 | + |
81 | 81 | <dependency> |
82 | 82 | <groupId>org.apache.logging.log4j</groupId> |
83 | 83 | <artifactId>log4j-core-test</artifactId> |
84 | 84 | <scope>test</scope> |
85 | 85 | </dependency> |
| 86 | + |
86 | 87 | <dependency> |
87 | 88 | <groupId>org.apache.logging.log4j</groupId> |
88 | 89 | <artifactId>log4j-to-slf4j</artifactId> |
89 | 90 | <scope>test</scope> |
90 | | - <exclusions> |
91 | | - <exclusion> |
92 | | - <groupId>org.slf4j</groupId> |
93 | | - <artifactId>slf4j-api</artifactId> |
94 | | - </exclusion> |
95 | | - </exclusions> |
96 | 91 | </dependency> |
| 92 | + |
| 93 | + <dependency> |
| 94 | + <groupId>org.assertj</groupId> |
| 95 | + <artifactId>assertj-core</artifactId> |
| 96 | + <scope>test</scope> |
| 97 | + </dependency> |
| 98 | + |
97 | 99 | <dependency> |
98 | 100 | <groupId>org.apache.commons</groupId> |
99 | 101 | <artifactId>commons-csv</artifactId> |
100 | 102 | <scope>test</scope> |
101 | 103 | </dependency> |
| 104 | + |
102 | 105 | <dependency> |
103 | 106 | <groupId>org.apache.commons</groupId> |
104 | 107 | <artifactId>commons-lang3</artifactId> |
105 | 108 | <scope>test</scope> |
106 | 109 | </dependency> |
| 110 | + |
107 | 111 | <dependency> |
108 | 112 | <groupId>org.junit.jupiter</groupId> |
109 | 113 | <artifactId>junit-jupiter-engine</artifactId> |
110 | 114 | <scope>test</scope> |
111 | 115 | </dependency> |
| 116 | + |
| 117 | + <dependency> |
| 118 | + <groupId>org.junit.jupiter</groupId> |
| 119 | + <artifactId>junit-jupiter-params</artifactId> |
| 120 | + <scope>test</scope> |
| 121 | + </dependency> |
| 122 | + |
112 | 123 | <dependency> |
113 | 124 | <groupId>org.junit.vintage</groupId> |
114 | 125 | <artifactId>junit-vintage-engine</artifactId> |
115 | 126 | <scope>test</scope> |
116 | 127 | </dependency> |
| 128 | + |
117 | 129 | </dependencies> |
118 | 130 | <build> |
119 | 131 | <plugins> |
|
0 commit comments