KEYCLOAK-6154 Exclude common-logging/codec from keycloak-osgi-thirdparty

This commit is contained in:
Martin Kanis 2018-01-31 19:49:02 +01:00 committed by Hynek Mlnařík
parent 179e371d0e
commit 6b8ec0bb82
2 changed files with 10 additions and 1 deletions

View file

@ -17,7 +17,6 @@
package org.keycloak.adapters.installed;
import org.apache.commons.codec.Charsets;
import org.keycloak.OAuth2Constants;
import org.keycloak.OAuthErrorException;
import org.keycloak.adapters.KeycloakDeployment;

View file

@ -45,6 +45,16 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>