summaryrefslogtreecommitdiffstats
path: root/api/pom.xml
diff options
context:
space:
mode:
authorManuel Bentele2021-12-16 07:56:00 +0100
committerManuel Bentele2021-12-16 08:01:13 +0100
commit932f537231cba02c9f08558475e6aea5a1c5d838 (patch)
treeda6351fe88c22affcffba517095f3411683faa89 /api/pom.xml
parent[daemon] Fix Java compiler warning (diff)
downloadtaskman-lite-932f537231cba02c9f08558475e6aea5a1c5d838.tar.gz
taskman-lite-932f537231cba02c9f08558475e6aea5a1c5d838.tar.xz
taskman-lite-932f537231cba02c9f08558475e6aea5a1c5d838.zip
Update log4j because of the CVE-2021-44228 security flaw
Diffstat (limited to 'api/pom.xml')
-rw-r--r--api/pom.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/api/pom.xml b/api/pom.xml
index 6ff09fb..3993a09 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -48,15 +48,15 @@
<dependencies>
<dependency>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.17</version>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-api</artifactId>
+ <version>[2.0,3.0)</version>
<scope>compile</scope>
</dependency>
<dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.7.5</version>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ <version>[2.0,3.0)</version>
<scope>compile</scope>
</dependency>
<dependency>