summaryrefslogtreecommitdiffstats
path: root/container-apache-http-client-bundle
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@vespa.ai>2023-12-08 10:41:30 +0100
committerBjørn Christian Seime <bjorncs@vespa.ai>2023-12-08 10:59:26 +0100
commitdd866f6070d65c36d7c68607a0b4115f853a6c47 (patch)
treed202f1f544285f27cdd6fb22e6eba3fb191d2844 /container-apache-http-client-bundle
parent2908eb01b5d7d8d427af68efe1f05cc225a76423 (diff)
Don't embed commons-logging
Diffstat (limited to 'container-apache-http-client-bundle')
-rw-r--r--container-apache-http-client-bundle/pom.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/container-apache-http-client-bundle/pom.xml b/container-apache-http-client-bundle/pom.xml
index e580364a51a..21e4fee56c1 100644
--- a/container-apache-http-client-bundle/pom.xml
+++ b/container-apache-http-client-bundle/pom.xml
@@ -23,6 +23,12 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
@@ -80,10 +86,8 @@
<Import-Package>
!javax.servlet,
javax.*,
- org.slf4j,
- org.slf4j.spi,
- org.slf4j.helpers,
- org.slf4j.event,
+ org.apache.commons.logging.*,
+ org.slf4j.*,
org.ietf.jgss
</Import-Package>
<Embed-Transitive>true</Embed-Transitive>