Skip to content

Commit

Permalink
JENKINS-48357 Older version of httpclient-cache causing IllegalAccess…
Browse files Browse the repository at this point in the history
…Error
  • Loading branch information
James Dumay committed Dec 18, 2017
1 parent 4c7dcde commit 3380f40
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions pom.xml
Expand Up @@ -35,6 +35,7 @@
<cobertura.version>2.7</cobertura.version>
<surefire.version>2.20</surefire.version>
<jackson.version>2.8.9</jackson.version>
<httpclient.version>4.5.3</httpclient.version>
</properties>

<profiles>
Expand Down Expand Up @@ -235,12 +236,23 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.5.3</version>
<version>${httpclient.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.3</version>
<version>${httpclient.version}</version>
<exclusions>
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient-cache</artifactId>
<version>${httpclient.version}</version>
<exclusions>
<exclusion>
<groupId>commons-codec</groupId>
Expand All @@ -251,7 +263,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>fluent-hc</artifactId>
<version>4.5.3</version>
<version>${httpclient.version}</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down

0 comments on commit 3380f40

Please sign in to comment.