aboutsummaryrefslogtreecommitdiffstats
path: root/http-utils
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2020-11-25 13:57:22 +0100
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2020-11-25 13:57:22 +0100
commite16969c5fc2197c4532f368660f98f8e5711c114 (patch)
treea6cd868e7f2850dfcc29e00ae810f093688931dc /http-utils
parent7f6172f425200fa41c9dbc08a5c183225e2e663c (diff)
Exclude sl4j-api as compile scope dependency
Diffstat (limited to 'http-utils')
-rw-r--r--http-utils/pom.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/http-utils/pom.xml b/http-utils/pom.xml
index aa261574285..1f85658430f 100644
--- a/http-utils/pom.xml
+++ b/http-utils/pom.xml
@@ -26,6 +26,11 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
+ <dependency>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ <scope>provided</scope>
+ </dependency>
<!-- compile scope -->
<dependency>
@@ -42,6 +47,12 @@
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<scope>compile</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<!-- test scope -->