diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2015-02-10 11:58:19 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2015-02-17 01:06:45 +0100 |
commit | a8743df19c2574bc3481fa5f811499b5960951a8 (patch) | |
tree | c9117827616ffb64acdf7c026d9a06ca2728fd2c /pom.xml | |
parent | c18694e0d1c122a2f95537fd9254fb075d2e0bc2 (diff) | |
download | jgit-a8743df19c2574bc3481fa5f811499b5960951a8.tar.gz 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.xml | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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> |