Skip to content

Commit fa6f20b

Browse files
committedJul 11, 2011
Replace end of life apache http client 3.1 with 4.1
1 parent c251928 commit fa6f20b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+819
-556
lines changed
 

‎TODO.org

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Include things like TCP_NODELAY etc
77
* TODO Push retrier down the stack to Raw level
88
* TODO Conversion needs more thought, especially around the key
9+
** TODO separate convert to and convert from domain object
910
* TODO Have store/fetch/delete Object operations use the pass through non converter if the type they are working with is IRiakObject
1011
* TODO Have key as a parameter to convert?
1112
* TODO remove vclock as param to convert?

‎pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@
6161

6262
<dependencies>
6363
<!-- Apache Commons -->
64-
<dependency>
65-
<groupId>commons-httpclient</groupId>
66-
<artifactId>commons-httpclient</artifactId>
67-
<version>3.1</version>
68-
</dependency>
64+
<dependency>
65+
<groupId>org.apache.httpcomponents</groupId>
66+
<artifactId>httpclient</artifactId>
67+
<version>4.1.1</version>
68+
</dependency>
6969
<!-- Protocol BUffers -->
7070
<dependency>
7171
<groupId>com.google.protobuf</groupId>

0 commit comments

Comments
 (0)
Please sign in to comment.