You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by jo...@apache.org on 2017/05/24 04:05:53 UTC

nifi git commit: NIFI-3954 This closes #1841. Upgraded version of httpclient library to handle TLS issues. Added explicit dependency on httpcore for @ThreadSafe annotation.

Repository: nifi
Updated Branches:
  refs/heads/master 2c751a8e5 -> 6d07ebf50


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 <jo...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/6d07ebf5
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/6d07ebf5
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/6d07ebf5

Branch: refs/heads/master
Commit: 6d07ebf50c397458d639b3713525f6bbab4c7901
Parents: 2c751a8
Author: Andy LoPresto <al...@apache.org>
Authored: Mon May 22 15:06:17 2017 -0700
Committer: joewitt <jo...@apache.org>
Committed: Tue May 23 23:42:28 2017 -0400

----------------------------------------------------------------------
 .../nifi-standard-bundle/nifi-standard-processors/pom.xml     | 4 ++++
 pom.xml                                                       | 7 ++++++-
 2 files changed, 10 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/6d07ebf5/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
index d8021e9..e7bfbab 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/pom.xml
@@ -129,6 +129,10 @@
             <artifactId>httpclient</artifactId>
         </dependency>
         <dependency>
+            <groupId>org.apache.httpcomponents</groupId>
+            <artifactId>httpcore</artifactId>
+        </dependency>
+        <dependency>
             <groupId>javax.mail</groupId>
             <artifactId>mail</artifactId>
         </dependency>

http://git-wip-us.apache.org/repos/asf/nifi/blob/6d07ebf5/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f17b93d..8794abd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>