Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2015-02-10 10:58:19 +0000
committerMatthias Sohn2015-02-17 00:06:45 +0000
commita8743df19c2574bc3481fa5f811499b5960951a8 (patch)
treec9117827616ffb64acdf7c026d9a06ca2728fd2c /pom.xml
parentc18694e0d1c122a2f95537fd9254fb075d2e0bc2 (diff)
downloadjgit-a8743df19c2574bc3481fa5f811499b5960951a8.tar.gz
jgit-a8743df19c2574bc3481fa5f811499b5960951a8.tar.xz
jgit-a8743df19c2574bc3481fa5f811499b5960951a8.zip
Add log4j and slf4j-log4j bridge to jgit feature
CQ: 9207 CQ: 9241 Change-Id: Ic06a06da0a74f8fa494c0753cbe9ed2356c21ab3 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 128d793777..a60d863d3a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -190,6 +190,7 @@
<clirr-version>2.6.1</clirr-version>
<httpclient-version>4.1.3</httpclient-version>
<slf4j-version>1.7.2</slf4j-version>
+ <log4j-version>1.2.15</log4j-version>
<maven-javadoc-plugin-version>2.9.1</maven-javadoc-plugin-version>
<!-- Properties to enable jacoco code coverage analysis -->
@@ -544,11 +545,24 @@
<artifactId>httpclient</artifactId>
<version>${httpclient-version}</version>
</dependency>
+
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-version}</version>
</dependency>
+
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-log4j12</artifactId>
+ <version>${slf4j-version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>${log4j-version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>

Back to the top