aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-07-20 17:55:45 +0200
committerDaniel Schwarz <bartfastiel@users.noreply.github.com>2017-08-09 15:09:54 +0200
commiteee86c92814149913df71a7b22741e4acf1fae9c (patch)
tree20c3bdf4c92f31ad407630e9287c6628c6616810 /pom.xml
parent25b3258f922d8a4841f64827af81dcad07f62562 (diff)
downloadsonarqube-eee86c92814149913df71a7b22741e4acf1fae9c.tar.gz
sonarqube-eee86c92814149913df71a7b22741e4acf1fae9c.zip
SONAR-8798 configure log4j to slf4j bridge for transport client
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml13
1 files changed, 12 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index d7f17b9f5fd..4e008b2c935 100644
--- a/pom.xml
+++ b/pom.xml
@@ -74,6 +74,7 @@
<jetty.version>8.1.12.v20130726</jetty.version>
<logback.version>1.1.7</logback.version>
<slf4j.version>1.7.21</slf4j.version>
+ <log4j.version>2.7</log4j.version>
<tomcat.version>8.5.16</tomcat.version>
<elasticsearch.version>5.0.0</elasticsearch.version>
<orchestrator.version>3.15.0.1090</orchestrator.version>
@@ -839,8 +840,18 @@
</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>2.7</version>
+ <version>${log4j.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.logging.log4j</groupId>
+ <artifactId>log4j-core</artifactId>
+ <version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>