aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--container-apache-http-client-bundle/pom.xml8
-rw-r--r--container-dependency-versions/pom.xml6
2 files changed, 5 insertions, 9 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>
diff --git a/container-dependency-versions/pom.xml b/container-dependency-versions/pom.xml
index 9d37c7ebc61..1665d9b7782 100644
--- a/container-dependency-versions/pom.xml
+++ b/container-dependency-versions/pom.xml
@@ -153,11 +153,6 @@
<artifactId>xml-apis</artifactId>
<version>${xml-apis.version}</version>
</dependency>
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>${commons-codec.version}</version>
- </dependency>
</dependencies>
</dependencyManagement>
@@ -239,7 +234,6 @@
<properties>
<aopalliance.version>1.0</aopalliance.version>
- <commons-codec.version>1.15</commons-codec.version>
<guava.version>27.1-jre</guava.version>
<guice.version>4.2.3</guice.version>
<jackson2.version>2.13.4</jackson2.version>