summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 -->