Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Force httpclient version (#84)
Browse files Browse the repository at this point in the history
* solves #83

* adding exclusion of httpclient to oauth-httpclient4
  • Loading branch information
jadelkhoury committed Apr 9, 2020
1 parent 4a7e994 commit 705647e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion oslc4j-client/pom.xml
Expand Up @@ -27,6 +27,10 @@
<type>pom</type>
<version>${version.jena}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>net.oauth.core</groupId>
<artifactId>oauth</artifactId>
Expand All @@ -41,6 +45,12 @@
<groupId>net.oauth.core</groupId>
<artifactId>oauth-httpclient4</artifactId>
<version>20090913</version>
<exclusions>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.eclipse.lyo.oslc4j.core</groupId>
Expand Down Expand Up @@ -143,7 +153,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.6</version>
<version>4.5.10</version>
</dependency>
<dependency>
<groupId>com.ibm.icu</groupId>
Expand Down

0 comments on commit 705647e

Please sign in to comment.