File tree 2 files changed +8
-5
lines changed
src/main/java/org/apache/logging/log4j/mongodb4 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 28
28
<name >Apache Log4j MongoDB 4</name >
29
29
<description >MongoDB appender for Log4j using the MongoDB 4 driver API.</description >
30
30
<properties >
31
- <log4jParentDir >${basedir}/..</log4jParentDir >
32
31
33
32
<!--
34
33
~ OSGi and JPMS options
77
76
<groupId >junit</groupId >
78
77
<artifactId >junit</artifactId >
79
78
</exclusion >
80
- <exclusion >
81
- <groupId >org.junit.vintage</groupId >
82
- <artifactId >junit-vintage-engine</artifactId >
83
- </exclusion >
84
79
</exclusions >
85
80
</dependency >
86
81
<dependency >
112
107
113
108
<build >
114
109
<plugins >
110
+
115
111
<plugin >
116
112
<groupId >org.apache.maven.plugins</groupId >
117
113
<artifactId >maven-compiler-plugin</artifactId >
125
121
</annotationProcessorPaths >
126
122
</configuration >
127
123
</plugin >
124
+
128
125
<plugin >
129
126
<groupId >org.apache.maven.plugins</groupId >
130
127
<artifactId >maven-surefire-plugin</artifactId >
145
142
</dependency >
146
143
</dependencies >
147
144
</plugin >
145
+
148
146
</plugins >
149
147
</build >
148
+
150
149
</project >
Original file line number Diff line number Diff line change 25
25
* {@link Document}.
26
26
*/
27
27
public final class MongoDb4DocumentObject implements NoSqlObject <Document > {
28
+
28
29
private final Document document ;
29
30
31
+ /**
32
+ * Constructs a new instance.
33
+ */
30
34
public MongoDb4DocumentObject () {
31
35
this .document = new Document ();
32
36
}
You can’t perform that action at this time.
0 commit comments