Skip to content

Commit 36540f7

Browse files
committed
add logging dependencies
1 parent 2f6db5c commit 36540f7

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<properties>
1717
<package-name>life.qbic.xmledit</package-name>
1818
<main-class>life.qbic.xmledit.XMLEditor</main-class>
19+
<log4j.version>2.20.0</log4j.version>
1920
</properties>
2021

2122
<distributionManagement>
@@ -68,6 +69,21 @@
6869
<artifactId>markdown</artifactId>
6970
<version>0.1.46</version>
7071
</dependency>
72+
<dependency>
73+
<groupId>org.apache.logging.log4j</groupId>
74+
<artifactId>log4j-api</artifactId>
75+
<version>${log4j.version}</version>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.apache.logging.log4j</groupId>
79+
<artifactId>log4j-core</artifactId>
80+
<version>${log4j.version}</version>
81+
</dependency>
82+
<dependency>
83+
<groupId>org.apache.logging.log4j</groupId>
84+
<artifactId>log4j-slf4j2-impl</artifactId>
85+
<version>${log4j.version}</version>
86+
</dependency>
7187
</dependencies>
7288
<repositories>
7389
<!-- The order of definitions matters. Explicitly defining central here to make sure it has the highest priority. -->

0 commit comments

Comments
 (0)