Skip to content

Commit

Permalink
Update logging dependencies and add jul-to-slf4j (#643)
Browse files Browse the repository at this point in the history
* Update logging dependencies

- slf4j 1.7.36
- log4j 2.17.2

* Add jul-to-slf4j

So that libraries using java.util.logging
can be logged

* Update log4j to 2.20.0
  • Loading branch information
Enet4 authored Jul 6, 2023
1 parent 2c508dc commit 28affe6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion dicoogle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<log4j.version>2.17.1</log4j.version>
<log4j.version>2.20.0</log4j.version>
<maven.build.timestamp.format>yyyyMMdd_HHmm</maven.build.timestamp.format>
<buildNumber>${maven.build.timestamp}</buildNumber>
</properties>
Expand Down Expand Up @@ -435,6 +435,12 @@
<version>${slf4j.version}</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jul-to-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<jetty.version>9.0.3.v20130506</jetty.version>
<restlet.version>2.1.2</restlet.version>
<dcm4che.version>2.0.29</dcm4che.version>
<slf4j.version>1.7.12</slf4j.version>
<slf4j.version>1.7.36</slf4j.version>
</properties>
<build>
<plugins>
Expand Down

0 comments on commit 28affe6

Please sign in to comment.