File tree 3 files changed +58
-1
lines changed
3 files changed +58
-1
lines changed Original file line number Diff line number Diff line change 42
42
<mongodb .version>3.12.11</mongodb .version>
43
43
</properties >
44
44
45
+ <!-- Use explicit versions as a temporary workaround to a Coursier/Ivy bug:
46
+ https://github.com/apache/logging-log4j2/issues/2065 -->
47
+ <dependencyManagement >
48
+ <dependencies >
49
+ <dependency >
50
+ <groupId >org.mongodb</groupId >
51
+ <artifactId >bson</artifactId >
52
+ <version >${mongodb.version} </version >
53
+ </dependency >
54
+ <dependency >
55
+ <groupId >org.mongodb</groupId >
56
+ <artifactId >mongodb-driver-core</artifactId >
57
+ <version >${mongodb.version} </version >
58
+ </dependency >
59
+ <dependency >
60
+ <groupId >org.mongodb</groupId >
61
+ <artifactId >mongodb-driver-legacy</artifactId >
62
+ <version >${mongodb.version} </version >
63
+ </dependency >
64
+ <dependency >
65
+ <groupId >org.mongodb</groupId >
66
+ <artifactId >mongodb-driver-sync</artifactId >
67
+ <version >${mongodb.version} </version >
68
+ </dependency >
69
+ </dependencies >
70
+ </dependencyManagement >
71
+
45
72
<dependencies >
46
73
<dependency >
47
74
<groupId >org.apache.logging.log4j</groupId >
Original file line number Diff line number Diff line change 28
28
<name >Apache Log4j SLF4J Binding</name >
29
29
<description >The Apache Log4j SLF4J API binding to Log4j 2 Core</description >
30
30
<properties >
31
+ <slf4j .version>1.7.36</slf4j .version>
31
32
<!-- Do not upgrade the SLF4J version. 1.7.26 broke backward compatibility. Users can update the version if
32
33
they do not require support for SLF4J's EventData -->
33
- <slf4j .version>1.7.25</slf4j .version>
34
+ <slf4j-ext .version>1.7.25</slf4j-ext .version>
34
35
35
36
<!--
36
37
~ OSGi and JPMS options
46
47
org.slf4j;substitute="slf4j-api"
47
48
</bnd-extra-module-options >
48
49
</properties >
50
+
51
+ <!-- Use explicit versions as a temporary workaround to a Coursier/Ivy bug:
52
+ https://github.com/apache/logging-log4j2/issues/2065 -->
53
+ <dependencyManagement >
54
+ <dependencies >
55
+ <dependency >
56
+ <groupId >org.slf4j</groupId >
57
+ <artifactId >slf4j-api</artifactId >
58
+ <version >${slf4j.version} </version >
59
+ </dependency >
60
+ <dependency >
61
+ <groupId >org.slf4j</groupId >
62
+ <artifactId >slf4j-ext</artifactId >
63
+ <version >${slf4j-ext.version} </version >
64
+ <optional >true</optional >
65
+ </dependency >
66
+ </dependencies >
67
+ </dependencyManagement >
68
+
49
69
<dependencies >
50
70
<dependency >
51
71
<groupId >org.osgi</groupId >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <entry xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xmlns =" http://logging.apache.org/log4j/changelog"
4
+ xsi : schemaLocation =" http://logging.apache.org/log4j/changelog https://logging.apache.org/log4j/changelog-0.1.2.xsd"
5
+ type =" fixed" >
6
+ <issue id =" 2065" link =" https://github.com/apache/logging-log4j2/pull/2065" />
7
+ <description format =" asciidoc" >
8
+ Workaround a Coursier/Ivy dependency resolution bug affecting `log4j-slf4j-impl` and `log4j-mongodb3`.
9
+ </description >
10
+ </entry >
You can’t perform that action at this time.
0 commit comments