diff options
Diffstat (limited to 'integration-tests')
-rw-r--r-- | integration-tests/pom.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index c3745b6962..7a544eab78 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -155,6 +155,10 @@ limitations under the License. <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> </exclusion> + <exclusion> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -180,6 +184,12 @@ limitations under the License. <artifactId>httpclient</artifactId> <version>${httpclient.version}</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> @@ -414,7 +424,7 @@ limitations under the License. <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> - <version>4.5.5</version> + <version>${httpclient.version}</version> </dependency> </dependencies> <configuration> |