Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update logging libraries to safe versions #1639

Merged
merged 1 commit into from
Dec 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@
<iabtcf.version>2.0.7</iabtcf.version>
<metrics-prometheus.version>0.5.0</metrics-prometheus.version>
<maxmind-client.version>2.12.0</maxmind-client.version>
<logback.version>1.2.8</logback.version>
<log4j.version>2.16.0</log4j.version>

<!-- test dependencies versions -->
<junit.version>4.13.2</junit.version>
Expand Down Expand Up @@ -318,6 +320,27 @@
<artifactId>geoip2</artifactId>
<version>${maxmind-client.version}</version>
</dependency>
<!--TODO: Remove this after bumping to new Spring Parent with safe log4j and logback -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
Expand Down