NIFI-3954 This closes #1841. Upgraded version of httpclient library to handle TLS issues.

Added explicit dependency on httpcore for @ThreadSafe annotation.

Signed-off-by: joewitt <joewitt@apache.org>
This commit is contained in:
Andy LoPresto 2017-05-22 15:06:17 -07:00 committed by joewitt
parent 2c751a8e5b
commit 6d07ebf50c
2 changed files with 10 additions and 1 deletions

View File

@ -128,6 +128,10 @@
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>

View File

@ -298,7 +298,12 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.4.1</version>
<version>4.5.3</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.4</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>