diff options
author | Jimmy Forsyth <jf2512@att.com> | 2018-05-07 17:42:07 -0400 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2018-05-07 17:42:19 -0400 |
commit | 36be8a3b3cf20e3b9a74f2a3a15f89cc1bec74a4 (patch) | |
tree | 50aab6c3ade793ee52ee359a46096af57892b1af | |
parent | 1e717da9896132fb1b54d74f26d5db9e5dbe5fbf (diff) |
Exclude httpclient 4.5 and force 4.5.5v1.2.1
Issue-ID: AAI-1124
Change-Id: Ic9fcb4b6e57cfff8ee7288d25010410136b8d812
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
-rw-r--r-- | pom.xml | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -64,7 +64,24 @@ limitations under the License. <groupId>com.att.nsa</groupId> <artifactId>cambriaClient</artifactId> <version>0.0.1</version> + <exclusions> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient-cache</artifactId> + </exclusion> + </exclusions> </dependency> + + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.5.5</version> + </dependency> + <!-- Dependencies for the REST Client component --> <!-- Library to obfuscate encrypted passwords --> <dependency> |