aboutsummaryrefslogtreecommitdiffstats
path: root/container-apache-http-client-bundle
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-01-04 16:34:23 +0100
committerHenning Baldersheim <balder@yahoo-inc.com>2023-01-04 16:34:23 +0100
commit25803af1bdd1a04a1ad4457b4d8d7702386ea058 (patch)
tree4a70b2c6ab7cf8cb24e46c6041fb523ae958e362 /container-apache-http-client-bundle
parentc95ee96257b8587112f10ffb62595c37a6a519c1 (diff)
Add explicit commons-codec to avoid maven issue with transitive dependencies
Diffstat (limited to 'container-apache-http-client-bundle')
-rw-r--r--container-apache-http-client-bundle/pom.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/container-apache-http-client-bundle/pom.xml b/container-apache-http-client-bundle/pom.xml
index d2f70b91bb3..fa29043bf5f 100644
--- a/container-apache-http-client-bundle/pom.xml
+++ b/container-apache-http-client-bundle/pom.xml
@@ -43,17 +43,19 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
- <scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
- <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <!-- Workaround for maven issue preventing correct version resolving for transitive dependencies in some cases -->
+ <groupId>commons-codec</groupId>
+ <artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
- <scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>