nifi git commit: NIFI-4021: Fix StandardFlowSynchronizerSpec to pass independently.

2017-06-05 Thread alopresto
Repository: nifi
Updated Branches:
  refs/heads/master f31f2a5f2 -> e1880785d


NIFI-4021: Fix StandardFlowSynchronizerSpec to pass independently.

This closes #1892.

Signed-off-by: Andy LoPresto 


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

Branch: refs/heads/master
Commit: e1880785d0fa5995507479d8d74a1189968a661c
Parents: f31f2a5
Author: Koji Kawamura 
Authored: Tue Jun 6 11:08:08 2017 +0900
Committer: Andy LoPresto 
Committed: Mon Jun 5 19:25:07 2017 -0700

--
 .../controller/StandardFlowSynchronizerSpec.groovy | 13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/nifi/blob/e1880785/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/groovy/org/apache/nifi/controller/StandardFlowSynchronizerSpec.groovy
--
diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/groovy/org/apache/nifi/controller/StandardFlowSynchronizerSpec.groovy
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/groovy/org/apache/nifi/controller/StandardFlowSynchronizerSpec.groovy
index e54bbe8..7483228 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/groovy/org/apache/nifi/controller/StandardFlowSynchronizerSpec.groovy
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/groovy/org/apache/nifi/controller/StandardFlowSynchronizerSpec.groovy
@@ -37,14 +37,16 @@ import spock.lang.Unroll
 class StandardFlowSynchronizerSpec extends Specification {
 
 @Shared
-def systemBundle;
+def systemBundle
+@Shared
+def nifiProperties
 
 def setupSpec() {
 def propFile = 
StandardFlowSynchronizerSpec.class.getResource("/standardflowsynchronizerspec.nifi.properties").getFile()
 
-def niFiProperties = 
NiFiProperties.createBasicNiFiProperties(propFile, null);
-systemBundle = SystemBundle.create(niFiProperties);
-ExtensionManager.discoverExtensions(systemBundle, 
Collections.emptySet());
+nifiProperties = NiFiProperties.createBasicNiFiProperties(propFile, 
null)
+systemBundle = SystemBundle.create(nifiProperties)
+ExtensionManager.discoverExtensions(systemBundle, 
Collections.emptySet())
 }
 
 def teardownSpec() {
@@ -75,8 +77,7 @@ class StandardFlowSynchronizerSpec extends Specification {
 def Map connectionMocksById = [:]
 def Map bendPointPositionsByConnectionId = [:]
 // the unit under test
-def nifiProperties = NiFiProperties.createBasicNiFiProperties(null, 
null)
-def flowSynchronizer = new 
StandardFlowSynchronizer(null,nifiProperties)
+def flowSynchronizer = new StandardFlowSynchronizer(null, 
nifiProperties)
 def firstRootGroup = Mock ProcessGroup
 
 when: "the flow is synchronized with the current state of the 
controller"



nifi git commit: NIFI-3836 Added check for root user in test that depends on unreadable file.

2017-06-05 Thread alopresto
Repository: nifi
Updated Branches:
  refs/heads/master 082b99640 -> f31f2a5f2


NIFI-3836 Added check for root user in test that depends on unreadable file.

This closes #1865.

Signed-off-by: Andy LoPresto 


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

Branch: refs/heads/master
Commit: f31f2a5f2663844874d017c69f941458bedeaf51
Parents: 082b996
Author: Andy LoPresto 
Authored: Fri May 26 10:27:18 2017 -0700
Committer: Andy LoPresto 
Committed: Mon Jun 5 18:58:07 2017 -0700

--
 .../org/apache/nifi/provenance/CryptoUtilsTest.groovy   | 9 +
 1 file changed, 9 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/nifi/blob/f31f2a5f/nifi-commons/nifi-data-provenance-utils/src/test/groovy/org/apache/nifi/provenance/CryptoUtilsTest.groovy
--
diff --git 
a/nifi-commons/nifi-data-provenance-utils/src/test/groovy/org/apache/nifi/provenance/CryptoUtilsTest.groovy
 
b/nifi-commons/nifi-data-provenance-utils/src/test/groovy/org/apache/nifi/provenance/CryptoUtilsTest.groovy
index f4992b6..9ba8e97 100644
--- 
a/nifi-commons/nifi-data-provenance-utils/src/test/groovy/org/apache/nifi/provenance/CryptoUtilsTest.groovy
+++ 
b/nifi-commons/nifi-data-provenance-utils/src/test/groovy/org/apache/nifi/provenance/CryptoUtilsTest.groovy
@@ -88,6 +88,14 @@ class CryptoUtilsTest {
 Cipher.getMaxAllowedKeyLength("AES") > 128
 }
 
+private static boolean isRootUser() {
+ProcessBuilder pb = new ProcessBuilder(["id", "-u"])
+Process process = pb.start()
+InputStream responseStream = process.getInputStream()
+BufferedReader responseReader = new BufferedReader(new 
InputStreamReader(responseStream))
+responseReader.text.trim() == "0"
+}
+
 @Test
 void testShouldConcatenateByteArrays() {
 // Arrange
@@ -197,6 +205,7 @@ class CryptoUtilsTest {
 void testShouldNotValidateUnreadableFileBasedKeyProvider() {
 // Arrange
 Assume.assumeFalse("This test does not run on Windows", 
SystemUtils.IS_OS_WINDOWS)
+Assume.assumeFalse("This test does not run for root users", 
isRootUser())
 
 String fileBasedProvider = FileBasedKeyProvider.class.name
 File fileBasedProviderFile = tempFolder.newFile("filebased.kp")



[jira] [Commented] (MINIFI-262) Configuration Listener in C++ client to support C2 operations

2017-06-05 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/MINIFI-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16037834#comment-16037834
 ] 

ASF GitHub Bot commented on MINIFI-262:
---

Github user phrocker commented on a diff in the pull request:

https://github.com/apache/nifi-minifi-cpp/pull/107#discussion_r120234097
  
--- Diff: libminifi/src/FlowController.cpp ---
@@ -163,6 +174,31 @@ FlowController::~FlowController() {
   provenance_repo_ = nullptr;
 }
 
+bool FlowController::applyConfiguration(std::string ) {
--- End diff --

Right now we're beginning to tightly couple "listening" to flow controller. 
We can improve that by moving to have a package that isolates much of the C2 
specifics. With a call back, you might be able to give call flowconfiguration, 
which is part of flow controller and it doesn't need to know the state. 


> Configuration Listener in C++ client to support C2 operations
> -
>
> Key: MINIFI-262
> URL: https://issues.apache.org/jira/browse/MINIFI-262
> Project: Apache NiFi MiNiFi
>  Issue Type: New Feature
>  Components: C++, Command and Control
>Reporter: marco polo
>Assignee: bqiu
>
> Create the concept of configuration listener support a variety of 
> implementations that will restart operations for the MiNiFi C++ agent. 
> The listener will implement a listener that will restart the MiNiFi process. 
> MiNiFi-263 will include the work to implement the configuration listener 
> interface. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (MINIFI-262) Configuration Listener in C++ client to support C2 operations

2017-06-05 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/MINIFI-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16037845#comment-16037845
 ] 

ASF GitHub Bot commented on MINIFI-262:
---

Github user phrocker commented on a diff in the pull request:

https://github.com/apache/nifi-minifi-cpp/pull/107#discussion_r120235144
  
--- Diff: libminifi/src/FlowController.cpp ---
@@ -163,6 +174,31 @@ FlowController::~FlowController() {
   provenance_repo_ = nullptr;
 }
 
+bool FlowController::applyConfiguration(std::string ) {
--- End diff --

You can use civet to run a webserver. I have a commit that can help if that 
is useful for you. 


> Configuration Listener in C++ client to support C2 operations
> -
>
> Key: MINIFI-262
> URL: https://issues.apache.org/jira/browse/MINIFI-262
> Project: Apache NiFi MiNiFi
>  Issue Type: New Feature
>  Components: C++, Command and Control
>Reporter: marco polo
>Assignee: bqiu
>
> Create the concept of configuration listener support a variety of 
> implementations that will restart operations for the MiNiFi C++ agent. 
> The listener will implement a listener that will restart the MiNiFi process. 
> MiNiFi-263 will include the work to implement the configuration listener 
> interface. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (MINIFI-262) Configuration Listener in C++ client to support C2 operations

2017-06-05 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/MINIFI-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16037841#comment-16037841
 ] 

ASF GitHub Bot commented on MINIFI-262:
---

Github user phrocker commented on a diff in the pull request:

https://github.com/apache/nifi-minifi-cpp/pull/107#discussion_r120234911
  
--- Diff: libminifi/src/FlowController.cpp ---
@@ -163,6 +174,31 @@ FlowController::~FlowController() {
   provenance_repo_ = nullptr;
 }
 
+bool FlowController::applyConfiguration(std::string ) {
--- End diff --

Great improvements, though. Any effort to test this? 


> Configuration Listener in C++ client to support C2 operations
> -
>
> Key: MINIFI-262
> URL: https://issues.apache.org/jira/browse/MINIFI-262
> Project: Apache NiFi MiNiFi
>  Issue Type: New Feature
>  Components: C++, Command and Control
>Reporter: marco polo
>Assignee: bqiu
>
> Create the concept of configuration listener support a variety of 
> implementations that will restart operations for the MiNiFi C++ agent. 
> The listener will implement a listener that will restart the MiNiFi process. 
> MiNiFi-263 will include the work to implement the configuration listener 
> interface. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (MINIFI-262) Configuration Listener in C++ client to support C2 operations

2017-06-05 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/MINIFI-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16037826#comment-16037826
 ] 

ASF GitHub Bot commented on MINIFI-262:
---

Github user phrocker commented on a diff in the pull request:

https://github.com/apache/nifi-minifi-cpp/pull/107#discussion_r120233311
  
--- Diff: libminifi/src/ConfigurationListener.cpp ---
@@ -0,0 +1,130 @@
+/**
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+#include "ConfigurationListener.h"
+#include "FlowController.h"
+#include 
+#include 
+#include 
+#include 
+#include 
+
+namespace org {
+namespace apache {
+namespace nifi {
+namespace minifi {
+
+void ConfigurationListener::start() {
+  if (running_)
+return;
+
+  pull_interval_ = 60 * 1000;
+  std::string value;
+  // grab the value for configuration
+  if (configure_->get(Configure::nifi_configuration_listener_pull_interval,
+  value)) {
+core::TimeUnit unit;
+if (core::Property::StringToTime(value, pull_interval_, unit)
+&& core::Property::ConvertTimeUnitToMS(pull_interval_, unit,
+pull_interval_)) {
+  logger_->log_info("Configuration Listener pull interval: [%d] ms",
+   pull_interval_);
+}
+  }
+
+  std::string clientAuthStr;
+  if 
(configure_->get(Configure::nifi_configuration_listener_need_ClientAuth, 
clientAuthStr)) {
+
org::apache::nifi::minifi::utils::StringUtils::StringToBool(clientAuthStr, 
this->need_client_certificate_);
+  }
+
+  if (configure_->get(
+  Configure::nifi_configuration_listener_client_ca_certificate,
+  this->ca_certificate_)) {
+logger_->log_info("Configuration Listener CA certificates: [%s]",
+this->ca_certificate_.c_str());
+  }
+
+  if (this->need_client_certificate_) {
+std::string passphrase_file;
+
+if (!(configure_->get(
+Configure::nifi_configuration_listener_client_certificate, 
this->certificate_)
+&& 
configure_->get(Configure::nifi_configuration_listener_private_key,
+this->private_key_))) {
+  logger_->log_error(
+  "Certificate and Private Key PEM file not configured for 
configuration listener, error: %s.",
+  std::strerror(errno));
+}
+
+if (configure_->get(
+Configure::nifi_configuration_listener_client_pass_phrase,
+passphrase_file)) {
+  // load the passphase from file
+  std::ifstream file(passphrase_file.c_str(), std::ifstream::in);
+  if (file.good()) {
+this->passphrase_.assign((std::istreambuf_iterator(file)),
+std::istreambuf_iterator());
+file.close();
+  }
+}
+
+logger_->log_info("Configuration Listener certificate: [%s], private 
key: [%s], passphrase file: [%s]",
+this->certificate_.c_str(), this->private_key_.c_str(), 
passphrase_file.c_str());
+  }
+
+  thread_ = std::thread(::threadExecutor, this);
+  thread_.detach();
+  running_ = true;
+  logger_->log_info("%s ConfigurationListener Thread Start", 
type_.c_str());
+}
+
+void ConfigurationListener::stop() {
+  if (!running_)
+return;
+  running_ = false;
+  if (thread_.joinable())
+thread_.join();
+  logger_->log_info("%s ConfigurationListener Thread Stop", type_.c_str());
+}
+
+void ConfigurationListener::run() {
+  int64_t interval = 0;
+  while (running_) {
+std::this_thread::sleep_for(std::chrono::milliseconds(100));
--- End diff --

If you used a condition variable then running can be captured in that 
somehow. 


> Configuration Listener in C++ client to support C2 operations
> -
>
> Key: MINIFI-262
> URL: https://issues.apache.org/jira/browse/MINIFI-262
> 

[jira] [Commented] (MINIFI-262) Configuration Listener in C++ client to support C2 operations

2017-06-05 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/MINIFI-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16037821#comment-16037821
 ] 

ASF GitHub Bot commented on MINIFI-262:
---

Github user phrocker commented on a diff in the pull request:

https://github.com/apache/nifi-minifi-cpp/pull/107#discussion_r120232599
  
--- Diff: libminifi/src/FlowController.cpp ---
@@ -175,7 +211,7 @@ void FlowController::stop(bool force) {
 this->flow_file_repo_->stop();
 this->provenance_repo_->stop();
 // Wait for sometime for thread stop
-std::this_thread::sleep_for(std::chrono::milliseconds(1000));
+std::this_thread::sleep_for(std::chrono::milliseconds(3000));
--- End diff --

That still seems arbitrary. Why were the values for the sleep chosen?


> Configuration Listener in C++ client to support C2 operations
> -
>
> Key: MINIFI-262
> URL: https://issues.apache.org/jira/browse/MINIFI-262
> Project: Apache NiFi MiNiFi
>  Issue Type: New Feature
>  Components: C++, Command and Control
>Reporter: marco polo
>Assignee: bqiu
>
> Create the concept of configuration listener support a variety of 
> implementations that will restart operations for the MiNiFi C++ agent. 
> The listener will implement a listener that will restart the MiNiFi process. 
> MiNiFi-263 will include the work to implement the configuration listener 
> interface. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[nifi] Git Push Summary

2017-06-05 Thread mcgilman
Repository: nifi
Updated Tags:  refs/tags/nifi-0.7.4-RC1 [created] 0ebfaa2e7


[nifi] Git Push Summary

2017-06-05 Thread mcgilman
Repository: nifi
Updated Tags:  refs/tags/nifi-1.3.0-RC1 [created] 13ec2c0e4


[1/6] nifi git commit: NIFI-3998-RC1prepare release nifi-0.7.4-RC1

2017-06-05 Thread mcgilman
Repository: nifi
Updated Branches:
  refs/heads/NIFI-3998-RC1 [created] 182bde2a3


http://git-wip-us.apache.org/repos/asf/nifi/blob/aafa9dc0/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-prioritizers/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-prioritizers/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-prioritizers/pom.xml
index 672e1f6..b3cc42c 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-prioritizers/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-prioritizers/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-standard-bundle
-0.8.0-SNAPSHOT
+0.7.4
 
 org.apache.nifi
 nifi-standard-prioritizers

http://git-wip-us.apache.org/repos/asf/nifi/blob/aafa9dc0/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 cf36974..400ad61 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
@@ -14,7 +14,7 @@ language governing permissions and limitations under the 
License. -->
 
 org.apache.nifi
 nifi-standard-bundle
-0.8.0-SNAPSHOT
+0.7.4
 
 nifi-standard-processors
 jar
@@ -238,7 +238,7 @@ language governing permissions and limitations under the 
License. -->
 
 org.apache.nifi
 nifi-standard-utils
-0.8.0-SNAPSHOT
+0.7.4
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/aafa9dc0/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-reporting-tasks/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-reporting-tasks/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-reporting-tasks/pom.xml
index 7e8595f..b8f427d 100644
--- 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-reporting-tasks/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-reporting-tasks/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-standard-bundle
-0.8.0-SNAPSHOT
+0.7.4
 
 nifi-standard-reporting-tasks
 jar

http://git-wip-us.apache.org/repos/asf/nifi/blob/aafa9dc0/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-utils/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-utils/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-utils/pom.xml
index 0b995d0..8756c44 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-utils/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-utils/pom.xml
@@ -13,7 +13,7 @@ language governing permissions and limitations under the 
License. -->
 
 nifi-standard-bundle
 org.apache.nifi
-0.8.0-SNAPSHOT
+0.7.4
 
 4.0.0
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/aafa9dc0/nifi-nar-bundles/nifi-standard-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-standard-bundle/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/pom.xml
index c322b40..3a6a041 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-bundle/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-0.8.0-SNAPSHOT
+0.7.4
 
 nifi-standard-bundle
 pom
@@ -37,29 +37,29 @@
 
 org.apache.nifi
 nifi-standard-processors
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-standard-prioritizers
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-standard-reporting-tasks
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-standard-content-viewer
 war
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-jolt-transform-json-ui
 war
-0.8.0-SNAPSHOT
+0.7.4
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/aafa9dc0/nifi-nar-bundles/nifi-standard-services/nifi-dbcp-service-api/pom.xml
--
diff --git 

[2/6] nifi git commit: NIFI-3998-RC1prepare release nifi-0.7.4-RC1

2017-06-05 Thread mcgilman
http://git-wip-us.apache.org/repos/asf/nifi/blob/aafa9dc0/nifi-nar-bundles/nifi-framework-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-framework-bundle/pom.xml 
b/nifi-nar-bundles/nifi-framework-bundle/pom.xml
index 80be836..c8c890e 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-framework-bundle/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-0.8.0-SNAPSHOT
+0.7.4
 
 nifi-framework-bundle
 pom
@@ -31,92 +31,92 @@
 
 org.apache.nifi
 nifi-framework-cluster-protocol
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-framework-cluster-web
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-file-authorization-provider
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-cluster-authorization-provider
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-framework-cluster
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-runtime
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-client-dto
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-web-content-access
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-security
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-framework-core-api
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-site-to-site
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-framework-core
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-user-actions
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-administration
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-jetty
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-web-optimistic-locking
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-web-security
-0.8.0-SNAPSHOT
+0.7.4
 
 
 org.apache.nifi
 nifi-documentation
-0.8.0-SNAPSHOT
+0.7.4
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/aafa9dc0/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-nar/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-nar/pom.xml 
b/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-nar/pom.xml
index ddc7a43..117056d 100644
--- a/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-nar/pom.xml
+++ b/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-nar/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-geo-bundle
-0.8.0-SNAPSHOT
+0.7.4
 
 nifi-geo-nar
 nar

http://git-wip-us.apache.org/repos/asf/nifi/blob/aafa9dc0/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-processors/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-processors/pom.xml 
b/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-processors/pom.xml
index e9e9ef6..a22e227 100644
--- a/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-processors/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-geo-bundle
-0.8.0-SNAPSHOT
+0.7.4
 
 nifi-geo-processors
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/aafa9dc0/nifi-nar-bundles/nifi-geo-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-geo-bundle/pom.xml 
b/nifi-nar-bundles/nifi-geo-bundle/pom.xml
index 96ccddc..2838442 100644
--- a/nifi-nar-bundles/nifi-geo-bundle/pom.xml
+++ 

[3/6] nifi git commit: NIFI-3998-RC1prepare release nifi-0.7.4-RC1

2017-06-05 Thread mcgilman
NIFI-3998-RC1prepare release nifi-0.7.4-RC1


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

Branch: refs/heads/NIFI-3998-RC1
Commit: aafa9dc025d4a750dac1b02447ff8cedb8e78827
Parents: 58d2ca2
Author: Matt Gilman 
Authored: Mon Jun 5 14:29:52 2017 -0400
Committer: Matt Gilman 
Committed: Mon Jun 5 14:29:52 2017 -0400

--
 nifi-api/pom.xml|   2 +-
 nifi-assembly/pom.xml   |   2 +-
 nifi-bootstrap/pom.xml  |   2 +-
 nifi-commons/nifi-data-provenance-utils/pom.xml |   2 +-
 nifi-commons/nifi-expression-language/pom.xml   |   2 +-
 nifi-commons/nifi-flowfile-packager/pom.xml |   2 +-
 nifi-commons/nifi-hadoop-utils/pom.xml  |   4 +-
 nifi-commons/nifi-hl7-query-language/pom.xml|   2 +-
 nifi-commons/nifi-logging-utils/pom.xml |   2 +-
 nifi-commons/nifi-processor-utilities/pom.xml   |   2 +-
 nifi-commons/nifi-properties/pom.xml|   2 +-
 nifi-commons/nifi-security-utils/pom.xml|   2 +-
 nifi-commons/nifi-site-to-site-client/pom.xml   |   4 +-
 nifi-commons/nifi-socket-utils/pom.xml  |   2 +-
 nifi-commons/nifi-utils/pom.xml |   4 +-
 nifi-commons/nifi-web-utils/pom.xml |   2 +-
 nifi-commons/nifi-write-ahead-log/pom.xml   |   2 +-
 nifi-commons/pom.xml|   2 +-
 nifi-docs/pom.xml   |   2 +-
 .../nifi-nifi-example-nar/pom.xml   |   2 +-
 .../nifi-nifi-example-processors/pom.xml|   2 +-
 nifi-external/nifi-example-bundle/pom.xml   |   4 +-
 nifi-external/nifi-spark-receiver/pom.xml   |   2 +-
 nifi-external/nifi-storm-spout/pom.xml  |   2 +-
 nifi-external/pom.xml   |   2 +-
 .../nifi-processor-bundle-archetype/pom.xml |   2 +-
 .../nifi-service-bundle-archetype/pom.xml   |   2 +-
 nifi-maven-archetypes/pom.xml   |   2 +-
 nifi-mock/pom.xml   |   2 +-
 .../nifi-ambari-bundle/nifi-ambari-nar/pom.xml  |   4 +-
 .../nifi-ambari-reporting-task/pom.xml  |   2 +-
 nifi-nar-bundles/nifi-ambari-bundle/pom.xml |   2 +-
 .../nifi-amqp-bundle/nifi-amqp-nar/pom.xml  |   4 +-
 .../nifi-amqp-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-amqp-bundle/pom.xml   |   6 +-
 .../nifi-avro-bundle/nifi-avro-nar/pom.xml  |   6 +-
 .../nifi-avro-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-avro-bundle/pom.xml   |   4 +-
 .../nifi-aws-bundle/nifi-aws-nar/pom.xml|   4 +-
 .../nifi-aws-bundle/nifi-aws-processors/pom.xml |   2 +-
 nifi-nar-bundles/nifi-aws-bundle/pom.xml|   2 +-
 .../nifi-azure-bundle/nifi-azure-nar/pom.xml|   6 +-
 .../nifi-azure-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-azure-bundle/pom.xml  |   4 +-
 .../nifi-cassandra-nar/pom.xml  |   2 +-
 .../nifi-cassandra-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-cassandra-bundle/pom.xml  |   4 +-
 .../nifi-couchbase-nar/pom.xml  |   6 +-
 .../nifi-couchbase-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-couchbase-bundle/pom.xml  |   4 +-
 .../nifi-elasticsearch-nar/pom.xml  |   2 +-
 .../nifi-elasticsearch-processors/pom.xml   |   2 +-
 .../nifi-elasticsearch-bundle/pom.xml   |   4 +-
 .../nifi-flume-bundle/nifi-flume-nar/pom.xml|   4 +-
 .../nifi-flume-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-flume-bundle/pom.xml  |   6 +-
 .../nifi-framework-nar/pom.xml  |   2 +-
 .../nifi-framework/nifi-administration/pom.xml  |   2 +-
 .../nifi-framework/nifi-client-dto/pom.xml  |   2 +-
 .../nifi-cluster-authorization-provider/pom.xml |   2 +-
 .../nifi-framework/nifi-documentation/pom.xml   |   2 +-
 .../nifi-file-authorization-provider/pom.xml|   2 +-
 .../nifi-framework-cluster-protocol/pom.xml |   2 +-
 .../nifi-framework-cluster-web/pom.xml  |   2 +-
 .../nifi-framework-cluster/pom.xml  |   2 +-
 .../nifi-framework-core-api/pom.xml |   2 +-
 .../nifi-framework/nifi-framework-core/pom.xml  |   2 +-
 .../nifi-framework/nifi-nar-utils/pom.xml   |   2 +-
 .../nifi-framework/nifi-resources/pom.xml   |   2 +-
 .../nifi-framework/nifi-runtime/pom.xml |   2 +-
 .../nifi-framework/nifi-security/pom.xml|   2 +-
 .../nifi-framework/nifi-site-to-site/pom.xml|   2 +-
 .../nifi-framework/nifi-user-actions/pom.xml|   2 +-
 .../nifi-web/nifi-custom-ui-utilities/pom.xml   |   2 +-
 .../nifi-framework/nifi-web/nifi-jetty/pom.xml  |   2 +-
 

[6/6] nifi git commit: NIFI-3998-RC1prepare for next development iteration

2017-06-05 Thread mcgilman
NIFI-3998-RC1prepare for next development iteration


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

Branch: refs/heads/NIFI-3998-RC1
Commit: 182bde2a3ba479659e31e2e917ca80196aefd7ea
Parents: aafa9dc
Author: Matt Gilman 
Authored: Mon Jun 5 14:30:05 2017 -0400
Committer: Matt Gilman 
Committed: Mon Jun 5 14:30:05 2017 -0400

--
 nifi-api/pom.xml|   2 +-
 nifi-assembly/pom.xml   |   2 +-
 nifi-bootstrap/pom.xml  |   2 +-
 nifi-commons/nifi-data-provenance-utils/pom.xml |   2 +-
 nifi-commons/nifi-expression-language/pom.xml   |   2 +-
 nifi-commons/nifi-flowfile-packager/pom.xml |   2 +-
 nifi-commons/nifi-hadoop-utils/pom.xml  |   4 +-
 nifi-commons/nifi-hl7-query-language/pom.xml|   2 +-
 nifi-commons/nifi-logging-utils/pom.xml |   2 +-
 nifi-commons/nifi-processor-utilities/pom.xml   |   2 +-
 nifi-commons/nifi-properties/pom.xml|   2 +-
 nifi-commons/nifi-security-utils/pom.xml|   2 +-
 nifi-commons/nifi-site-to-site-client/pom.xml   |   4 +-
 nifi-commons/nifi-socket-utils/pom.xml  |   2 +-
 nifi-commons/nifi-utils/pom.xml |   4 +-
 nifi-commons/nifi-web-utils/pom.xml |   2 +-
 nifi-commons/nifi-write-ahead-log/pom.xml   |   2 +-
 nifi-commons/pom.xml|   2 +-
 nifi-docs/pom.xml   |   2 +-
 .../nifi-nifi-example-nar/pom.xml   |   2 +-
 .../nifi-nifi-example-processors/pom.xml|   2 +-
 nifi-external/nifi-example-bundle/pom.xml   |   4 +-
 nifi-external/nifi-spark-receiver/pom.xml   |   2 +-
 nifi-external/nifi-storm-spout/pom.xml  |   2 +-
 nifi-external/pom.xml   |   2 +-
 .../nifi-processor-bundle-archetype/pom.xml |   2 +-
 .../nifi-service-bundle-archetype/pom.xml   |   2 +-
 nifi-maven-archetypes/pom.xml   |   2 +-
 nifi-mock/pom.xml   |   2 +-
 .../nifi-ambari-bundle/nifi-ambari-nar/pom.xml  |   4 +-
 .../nifi-ambari-reporting-task/pom.xml  |   2 +-
 nifi-nar-bundles/nifi-ambari-bundle/pom.xml |   2 +-
 .../nifi-amqp-bundle/nifi-amqp-nar/pom.xml  |   4 +-
 .../nifi-amqp-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-amqp-bundle/pom.xml   |   6 +-
 .../nifi-avro-bundle/nifi-avro-nar/pom.xml  |   6 +-
 .../nifi-avro-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-avro-bundle/pom.xml   |   4 +-
 .../nifi-aws-bundle/nifi-aws-nar/pom.xml|   4 +-
 .../nifi-aws-bundle/nifi-aws-processors/pom.xml |   2 +-
 nifi-nar-bundles/nifi-aws-bundle/pom.xml|   2 +-
 .../nifi-azure-bundle/nifi-azure-nar/pom.xml|   6 +-
 .../nifi-azure-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-azure-bundle/pom.xml  |   4 +-
 .../nifi-cassandra-nar/pom.xml  |   2 +-
 .../nifi-cassandra-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-cassandra-bundle/pom.xml  |   4 +-
 .../nifi-couchbase-nar/pom.xml  |   6 +-
 .../nifi-couchbase-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-couchbase-bundle/pom.xml  |   4 +-
 .../nifi-elasticsearch-nar/pom.xml  |   2 +-
 .../nifi-elasticsearch-processors/pom.xml   |   2 +-
 .../nifi-elasticsearch-bundle/pom.xml   |   4 +-
 .../nifi-flume-bundle/nifi-flume-nar/pom.xml|   4 +-
 .../nifi-flume-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-flume-bundle/pom.xml  |   6 +-
 .../nifi-framework-nar/pom.xml  |   2 +-
 .../nifi-framework/nifi-administration/pom.xml  |   2 +-
 .../nifi-framework/nifi-client-dto/pom.xml  |   2 +-
 .../nifi-cluster-authorization-provider/pom.xml |   2 +-
 .../nifi-framework/nifi-documentation/pom.xml   |   2 +-
 .../nifi-file-authorization-provider/pom.xml|   2 +-
 .../nifi-framework-cluster-protocol/pom.xml |   2 +-
 .../nifi-framework-cluster-web/pom.xml  |   2 +-
 .../nifi-framework-cluster/pom.xml  |   2 +-
 .../nifi-framework-core-api/pom.xml |   2 +-
 .../nifi-framework/nifi-framework-core/pom.xml  |   2 +-
 .../nifi-framework/nifi-nar-utils/pom.xml   |   2 +-
 .../nifi-framework/nifi-resources/pom.xml   |   2 +-
 .../nifi-framework/nifi-runtime/pom.xml |   2 +-
 .../nifi-framework/nifi-security/pom.xml|   2 +-
 .../nifi-framework/nifi-site-to-site/pom.xml|   2 +-
 .../nifi-framework/nifi-user-actions/pom.xml|   2 +-
 .../nifi-web/nifi-custom-ui-utilities/pom.xml   |   2 +-
 .../nifi-framework/nifi-web/nifi-jetty/pom.xml  | 

[4/6] nifi git commit: NIFI-3998-RC1prepare for next development iteration

2017-06-05 Thread mcgilman
http://git-wip-us.apache.org/repos/asf/nifi/blob/182bde2a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-prioritizers/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-prioritizers/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-prioritizers/pom.xml
index b3cc42c..2b9ea12 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-prioritizers/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-prioritizers/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-standard-bundle
-0.7.4
+0.7.5-SNAPSHOT
 
 org.apache.nifi
 nifi-standard-prioritizers

http://git-wip-us.apache.org/repos/asf/nifi/blob/182bde2a/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 400ad61..8246eb8 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
@@ -14,7 +14,7 @@ language governing permissions and limitations under the 
License. -->
 
 org.apache.nifi
 nifi-standard-bundle
-0.7.4
+0.7.5-SNAPSHOT
 
 nifi-standard-processors
 jar
@@ -238,7 +238,7 @@ language governing permissions and limitations under the 
License. -->
 
 org.apache.nifi
 nifi-standard-utils
-0.7.4
+0.7.5-SNAPSHOT
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/182bde2a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-reporting-tasks/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-reporting-tasks/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-reporting-tasks/pom.xml
index b8f427d..5b41676 100644
--- 
a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-reporting-tasks/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-reporting-tasks/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-standard-bundle
-0.7.4
+0.7.5-SNAPSHOT
 
 nifi-standard-reporting-tasks
 jar

http://git-wip-us.apache.org/repos/asf/nifi/blob/182bde2a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-utils/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-utils/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-utils/pom.xml
index 8756c44..600ebe0 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-utils/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-utils/pom.xml
@@ -13,7 +13,7 @@ language governing permissions and limitations under the 
License. -->
 
 nifi-standard-bundle
 org.apache.nifi
-0.7.4
+0.7.5-SNAPSHOT
 
 4.0.0
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/182bde2a/nifi-nar-bundles/nifi-standard-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-standard-bundle/pom.xml 
b/nifi-nar-bundles/nifi-standard-bundle/pom.xml
index 3a6a041..02f25de 100644
--- a/nifi-nar-bundles/nifi-standard-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-bundle/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-0.7.4
+0.7.5-SNAPSHOT
 
 nifi-standard-bundle
 pom
@@ -37,29 +37,29 @@
 
 org.apache.nifi
 nifi-standard-processors
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-standard-prioritizers
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-standard-reporting-tasks
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-standard-content-viewer
 war
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-jolt-transform-json-ui
 war
-0.7.4
+0.7.5-SNAPSHOT
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/182bde2a/nifi-nar-bundles/nifi-standard-services/nifi-dbcp-service-api/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-dbcp-service-api/pom.xml 

[5/6] nifi git commit: NIFI-3998-RC1prepare for next development iteration

2017-06-05 Thread mcgilman
http://git-wip-us.apache.org/repos/asf/nifi/blob/182bde2a/nifi-nar-bundles/nifi-framework-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-framework-bundle/pom.xml 
b/nifi-nar-bundles/nifi-framework-bundle/pom.xml
index c8c890e..9712bce 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-framework-bundle/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-0.7.4
+0.7.5-SNAPSHOT
 
 nifi-framework-bundle
 pom
@@ -31,92 +31,92 @@
 
 org.apache.nifi
 nifi-framework-cluster-protocol
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-framework-cluster-web
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-file-authorization-provider
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-cluster-authorization-provider
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-framework-cluster
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-runtime
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-client-dto
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-web-content-access
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-security
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-framework-core-api
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-site-to-site
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-framework-core
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-user-actions
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-administration
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-jetty
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-web-optimistic-locking
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-web-security
-0.7.4
+0.7.5-SNAPSHOT
 
 
 org.apache.nifi
 nifi-documentation
-0.7.4
+0.7.5-SNAPSHOT
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/182bde2a/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-nar/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-nar/pom.xml 
b/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-nar/pom.xml
index 117056d..a35e70e 100644
--- a/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-nar/pom.xml
+++ b/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-nar/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-geo-bundle
-0.7.4
+0.7.5-SNAPSHOT
 
 nifi-geo-nar
 nar

http://git-wip-us.apache.org/repos/asf/nifi/blob/182bde2a/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-processors/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-processors/pom.xml 
b/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-processors/pom.xml
index a22e227..dcac29f 100644
--- a/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-geo-bundle/nifi-geo-processors/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-geo-bundle
-0.7.4
+0.7.5-SNAPSHOT
 
 nifi-geo-processors
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/182bde2a/nifi-nar-bundles/nifi-geo-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-geo-bundle/pom.xml 
b/nifi-nar-bundles/nifi-geo-bundle/pom.xml
index 2838442..1e56fec 100644
--- a/nifi-nar-bundles/nifi-geo-bundle/pom.xml
+++ 

svn commit: r19887 - /dev/nifi/nifi/nifi-1.3.0/

2017-06-05 Thread mcgilman
Author: mcgilman
Date: Mon Jun  5 17:43:09 2017
New Revision: 19887

Log:
Apache NiFi 1.3.0 release artifacts

Added:
dev/nifi/nifi/nifi-1.3.0/
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz   (with props)
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.asc
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.md5
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.sha1
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.sha256
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.zip   (with props)
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.zip.asc
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.zip.md5
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.zip.sha1
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.zip.sha256
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-source-release.zip   (with props)
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-source-release.zip.asc
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-source-release.zip.md5
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-source-release.zip.sha1
dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-source-release.zip.sha256

Added: dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz
==
Binary file - no diff available.

Propchange: dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.asc
==
--- dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.asc (added)
+++ dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.asc Mon Jun  5 17:43:09 2017
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEUHogUBYyiEHEusnu32HsGUMq7jcFAlk1jo4ACgkQ32HsGUMq
+7jfSQhAA093zr9p3PqnslPLJiTu3iVaxCcsjqjugqNLkLojbzWWUjZ6HQ0cCWhxt
+0GcmLMzzuTNssDbxMqLoy6VJ4YgaGrSDUbKtRRo/IsQlVGqCOzZxlY50wtOq8a4G
+ai90aOjlJ2gKSlCjxlqbV6UWaUt3yzJaz6AXwmeT2p/wOaaLNGqSxqw/g4+9pb89
+u1exFO7d928p4VO92ENBFGXg9Sn4VyOVlVMbx4XXEyzFfZIBTf9zrci4bXyLx5xy
+xJ5Ti5P+fS0oO/TJKEn0wtrYqDc2lUrz0yQRLCm0dkT1hPaGNzPgIdY0hnq0TDIZ
+xoLQBug34NQPPVplYqd3K+l8oq3VjBZ9iz7WboIGGAAyq+eI5TKB815DEmBchCi/
+ySZ0kr8Fz3VJBmt2ocoqPjoHOngjGrO0gqOzub7/JPJiwvNOLbv2vkCkl7uCrM+V
+AWLpwHU/4f/E7jLq22/OmNiehqivfRZ3Dx74hPmWLOOX720uRFs+YrLv0UFjEZNz
+46AwMRx8zVxiFamyiCcC0HPTR7rsQBQ628UgKMpS4FYelSqRnOSCTvhZUV9YTb3T
+cfNA4IQIel8mRqrvbl+/OxBoOEJYGvY7pYFxR2puEpYZ6TDYgkvfDqtWwjLPPfqT
+q9XBkMplNOf4D3eAPsyEKEfvWn5/5j5tpTIp1iHFg/s6fBFL8Fc=
+=Vs1q
+-END PGP SIGNATURE-

Added: dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.md5
==
--- dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.md5 (added)
+++ dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.md5 Mon Jun  5 17:43:09 2017
@@ -0,0 +1 @@
+767f3baeb5180570500977124d8f5c21

Added: dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.sha1
==
--- dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.sha1 (added)
+++ dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.sha1 Mon Jun  5 17:43:09 2017
@@ -0,0 +1 @@
+17e1def9dfb9c0be62c0e08dd239f51f0bb3fce5

Added: dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.sha256
==
--- dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.sha256 (added)
+++ dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.tar.gz.sha256 Mon Jun  5 17:43:09 
2017
@@ -0,0 +1 @@
+f44407e86b370fe4851188100a7e9ae0b3eb347e6ffc78ae65208c0f59c1410e

Added: dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.zip
==
Binary file - no diff available.

Propchange: dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.zip
--
svn:mime-type = application/octet-stream

Added: dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.zip.asc
==
--- dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.zip.asc (added)
+++ dev/nifi/nifi/nifi-1.3.0/nifi-1.3.0-bin.zip.asc Mon Jun  5 17:43:09 2017
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCgAdFiEEUHogUBYyiEHEusnu32HsGUMq7jcFAlk1jrUACgkQ32HsGUMq
+7jdrpg//c7bqPWOusJogN9X8PGpBj4nv7jn3LpZeF1cg2w+QCU08VdwzeseJbJ6O
+XvVntkhGgs1zMSpHT+7TWYqYZE/JNakV6j+xvMdZgHlT6VfUrvdfaGWaKYU/BZ69
+TdsFrZQN9zIXMKTPQv4VT72kMGu7DmNPkAcaIN317NkeFpWktq1bGP6ol59nUVo+
+dhHi56/luHmxPJPNKl7miSpaDnbjNklbSFZv6o4lGKkQrv2C6CukuEZpnrSOSAW5
+ScMdQsiRzsrtd5KD38niFerLW0P/jWHpGYNUpoprl+Yh1bZuoDzr2D1Fqt6yEC3z
+MmW7GAW5f2lICUCV9BYxs/zw+gJtQjuUwKh7dQvBpMYEdotDtWN+CBKtJ46OHBSu
+yqu35GNF7uaZ8wIhCMpERfCWUv+boGiaeb/K6IyTKYo2QazKNwS99/ONS43vT9Sh
+Dq2UNuLdjlKEiF6eijif0Z9kNnWMmDGTNvSJYUklhdJXMffLTfNJBL5BCgeSTJ8H
+3a7LADWojA+t+24hdsR4EIx1PdJRYcb9/amu2ymgfu/9SsAMfO/8GilFuW8jjlXG
+fH/t8A39kpbJvDiaFTu3A3YxLdtYTozsSbd3g4viQZXikXpkH16basE1Om4FS6IH

[3/8] nifi git commit: NIFI-3997-RC1prepare release nifi-1.3.0-RC1

2017-06-05 Thread mcgilman
http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-extension-utils/nifi-hadoop-utils/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-extension-utils/nifi-hadoop-utils/pom.xml 
b/nifi-nar-bundles/nifi-extension-utils/nifi-hadoop-utils/pom.xml
index ae6efe3..200896e 100644
--- a/nifi-nar-bundles/nifi-extension-utils/nifi-hadoop-utils/pom.xml
+++ b/nifi-nar-bundles/nifi-extension-utils/nifi-hadoop-utils/pom.xml
@@ -18,10 +18,10 @@
 
 org.apache.nifi
 nifi-extension-utils
-1.3.0-SNAPSHOT
+1.3.0
 
 nifi-hadoop-utils
-1.3.0-SNAPSHOT
+1.3.0
 jar
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/pom.xml 
b/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/pom.xml
index 081adaf..38901e1 100644
--- a/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/pom.xml
+++ b/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-extension-utils
-1.3.0-SNAPSHOT
+1.3.0
 
 nifi-processor-utils
 jar

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/pom.xml
 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/pom.xml
index ce816e0..b95aa18 100644
--- 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/pom.xml
+++ 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-record-utils
-1.3.0-SNAPSHOT
+1.3.0
 
 
 nifi-avro-record-utils

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/pom.xml
 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/pom.xml
index 01b4d16..040f405 100644
--- 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/pom.xml
+++ 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/pom.xml
@@ -18,10 +18,10 @@
 
 org.apache.nifi
 nifi-record-utils
-1.3.0-SNAPSHOT
+1.3.0
 
 nifi-hadoop-record-utils
-1.3.0-SNAPSHOT
+1.3.0
 jar
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-mock-record-utils/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-mock-record-utils/pom.xml
 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-mock-record-utils/pom.xml
index 8e568d9..0639997 100644
--- 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-mock-record-utils/pom.xml
+++ 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-mock-record-utils/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-record-utils
-1.3.0-SNAPSHOT
+1.3.0
 
 
 nifi-mock-record-utils

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/pom.xml
 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/pom.xml
index 191b9db..dd20999 100644
--- 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/pom.xml
+++ 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-record-utils
-1.3.0-SNAPSHOT
+1.3.0
 
 
 nifi-standard-record-utils

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/pom.xml 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/pom.xml
index d33e400..8db4659 100644
--- 

[8/8] nifi git commit: NIFI-3997-RC1prepare for next development iteration

2017-06-05 Thread mcgilman
NIFI-3997-RC1prepare for next development iteration


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

Branch: refs/heads/NIFI-3997-RC1
Commit: 6ee12e9b475a55f2a30e5d2cc59a008271fa0760
Parents: ddb7361
Author: Matt Gilman 
Authored: Mon Jun 5 11:07:43 2017 -0400
Committer: Matt Gilman 
Committed: Mon Jun 5 11:07:43 2017 -0400

--
 nifi-api/pom.xml|   2 +-
 nifi-assembly/pom.xml   |   2 +-
 nifi-bootstrap/pom.xml  |   2 +-
 nifi-commons/nifi-data-provenance-utils/pom.xml |   2 +-
 nifi-commons/nifi-expression-language/pom.xml   |   2 +-
 nifi-commons/nifi-flowfile-packager/pom.xml |   2 +-
 nifi-commons/nifi-hl7-query-language/pom.xml|   2 +-
 nifi-commons/nifi-logging-utils/pom.xml |   2 +-
 nifi-commons/nifi-properties/pom.xml|   2 +-
 nifi-commons/nifi-record-path/pom.xml   |   2 +-
 nifi-commons/nifi-record/pom.xml|   2 +-
 nifi-commons/nifi-schema-utils/pom.xml  |   2 +-
 nifi-commons/nifi-security-utils/pom.xml|   2 +-
 nifi-commons/nifi-site-to-site-client/pom.xml   |   4 +-
 nifi-commons/nifi-socket-utils/pom.xml  |   2 +-
 nifi-commons/nifi-utils/pom.xml |   4 +-
 nifi-commons/nifi-web-utils/pom.xml |   2 +-
 nifi-commons/nifi-write-ahead-log/pom.xml   |   2 +-
 nifi-commons/pom.xml|   2 +-
 nifi-docker/pom.xml |   4 +-
 nifi-docs/pom.xml   |   2 +-
 .../nifi-nifi-example-nar/pom.xml   |   2 +-
 .../nifi-nifi-example-processors/pom.xml|   2 +-
 nifi-external/nifi-example-bundle/pom.xml   |   4 +-
 nifi-external/nifi-spark-receiver/pom.xml   |   2 +-
 nifi-external/nifi-storm-spout/pom.xml  |   2 +-
 nifi-external/pom.xml   |   2 +-
 nifi-framework-api/pom.xml  |   2 +-
 .../nifi-processor-bundle-archetype/pom.xml |   2 +-
 .../nifi-service-bundle-archetype/pom.xml   |   2 +-
 nifi-maven-archetypes/pom.xml   |   2 +-
 nifi-mock/pom.xml   |   2 +-
 .../nifi-ambari-bundle/nifi-ambari-nar/pom.xml  |   4 +-
 .../nifi-ambari-reporting-task/pom.xml  |   2 +-
 nifi-nar-bundles/nifi-ambari-bundle/pom.xml |   2 +-
 .../nifi-amqp-bundle/nifi-amqp-nar/pom.xml  |   4 +-
 .../nifi-amqp-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-amqp-bundle/pom.xml   |   6 +-
 .../nifi-avro-bundle/nifi-avro-nar/pom.xml  |   6 +-
 .../nifi-avro-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-avro-bundle/pom.xml   |   4 +-
 .../nifi-aws-bundle/nifi-aws-nar/pom.xml|   4 +-
 .../nifi-aws-bundle/nifi-aws-processors/pom.xml |   2 +-
 nifi-nar-bundles/nifi-aws-bundle/pom.xml|   2 +-
 .../nifi-azure-bundle/nifi-azure-nar/pom.xml|   4 +-
 .../nifi-azure-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-azure-bundle/pom.xml  |   2 +-
 .../nifi-beats-bundle/nifi-beats-nar/pom.xml|   6 +-
 .../nifi-beats-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-beats-bundle/pom.xml  |   4 +-
 .../nifi-cassandra-nar/pom.xml  |   2 +-
 .../nifi-cassandra-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-cassandra-bundle/pom.xml  |   4 +-
 .../nifi-ccda-bundle/nifi-ccda-nar/pom.xml  |   2 +-
 .../nifi-ccda-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-ccda-bundle/pom.xml   |   4 +-
 nifi-nar-bundles/nifi-cdc/nifi-cdc-api/pom.xml  |   2 +-
 .../nifi-cdc-mysql-nar/pom.xml  |   2 +-
 .../nifi-cdc-mysql-processors/pom.xml   |   6 +-
 .../nifi-cdc/nifi-cdc-mysql-bundle/pom.xml  |   4 +-
 nifi-nar-bundles/nifi-cdc/pom.xml   |   2 +-
 .../nifi-couchbase-nar/pom.xml  |   6 +-
 .../nifi-couchbase-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-couchbase-bundle/pom.xml  |   4 +-
 .../nifi-cybersecurity-nar/pom.xml  |   6 +-
 .../nifi-cybersecurity-processors/pom.xml   |   2 +-
 .../nifi-cybersecurity-bundle/pom.xml   |   4 +-
 .../nifi-datadog-nar/pom.xml|   2 +-
 .../nifi-datadog-reporting-task/pom.xml |   2 +-
 nifi-nar-bundles/nifi-datadog-bundle/pom.xml|   4 +-
 .../nifi-elasticsearch-5-nar/pom.xml|   2 +-
 .../nifi-elasticsearch-5-processors/pom.xml |   2 +-
 .../nifi-elasticsearch-nar/pom.xml  |   2 +-
 .../nifi-elasticsearch-processors/pom.xml   |   2 +-
 .../nifi-elasticsearch-bundle/pom.xml   | 

[4/8] nifi git commit: NIFI-3997-RC1prepare release nifi-1.3.0-RC1

2017-06-05 Thread mcgilman
NIFI-3997-RC1prepare release nifi-1.3.0-RC1


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

Branch: refs/heads/NIFI-3997-RC1
Commit: ddb73612bd1512d8b2151b81f9aa40811bca2aaa
Parents: 082b996
Author: Matt Gilman 
Authored: Mon Jun 5 11:07:28 2017 -0400
Committer: Matt Gilman 
Committed: Mon Jun 5 11:07:28 2017 -0400

--
 nifi-api/pom.xml|   2 +-
 nifi-assembly/pom.xml   |   2 +-
 nifi-bootstrap/pom.xml  |   2 +-
 nifi-commons/nifi-data-provenance-utils/pom.xml |   2 +-
 nifi-commons/nifi-expression-language/pom.xml   |   2 +-
 nifi-commons/nifi-flowfile-packager/pom.xml |   2 +-
 nifi-commons/nifi-hl7-query-language/pom.xml|   2 +-
 nifi-commons/nifi-logging-utils/pom.xml |   2 +-
 nifi-commons/nifi-properties/pom.xml|   2 +-
 nifi-commons/nifi-record-path/pom.xml   |   5 +-
 nifi-commons/nifi-record/pom.xml|   2 +-
 nifi-commons/nifi-schema-utils/pom.xml  |   2 +-
 nifi-commons/nifi-security-utils/pom.xml|   2 +-
 nifi-commons/nifi-site-to-site-client/pom.xml   |   4 +-
 nifi-commons/nifi-socket-utils/pom.xml  |   2 +-
 nifi-commons/nifi-utils/pom.xml |   4 +-
 nifi-commons/nifi-web-utils/pom.xml |   2 +-
 nifi-commons/nifi-write-ahead-log/pom.xml   |   2 +-
 nifi-commons/pom.xml|   2 +-
 nifi-docker/pom.xml |   4 +-
 nifi-docs/pom.xml   |   2 +-
 .../nifi-nifi-example-nar/pom.xml   |   2 +-
 .../nifi-nifi-example-processors/pom.xml|   2 +-
 nifi-external/nifi-example-bundle/pom.xml   |   4 +-
 nifi-external/nifi-spark-receiver/pom.xml   |   2 +-
 nifi-external/nifi-storm-spout/pom.xml  |   2 +-
 nifi-external/pom.xml   |   2 +-
 nifi-framework-api/pom.xml  |   2 +-
 .../nifi-processor-bundle-archetype/pom.xml |   2 +-
 .../nifi-service-bundle-archetype/pom.xml   |   2 +-
 nifi-maven-archetypes/pom.xml   |   2 +-
 nifi-mock/pom.xml   |   2 +-
 .../nifi-ambari-bundle/nifi-ambari-nar/pom.xml  |   4 +-
 .../nifi-ambari-reporting-task/pom.xml  |   2 +-
 nifi-nar-bundles/nifi-ambari-bundle/pom.xml |   2 +-
 .../nifi-amqp-bundle/nifi-amqp-nar/pom.xml  |   4 +-
 .../nifi-amqp-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-amqp-bundle/pom.xml   |   6 +-
 .../nifi-avro-bundle/nifi-avro-nar/pom.xml  |   6 +-
 .../nifi-avro-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-avro-bundle/pom.xml   |   4 +-
 .../nifi-aws-bundle/nifi-aws-nar/pom.xml|   4 +-
 .../nifi-aws-bundle/nifi-aws-processors/pom.xml |   2 +-
 nifi-nar-bundles/nifi-aws-bundle/pom.xml|   2 +-
 .../nifi-azure-bundle/nifi-azure-nar/pom.xml|   4 +-
 .../nifi-azure-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-azure-bundle/pom.xml  |   2 +-
 .../nifi-beats-bundle/nifi-beats-nar/pom.xml|   6 +-
 .../nifi-beats-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-beats-bundle/pom.xml  |   4 +-
 .../nifi-cassandra-nar/pom.xml  |   2 +-
 .../nifi-cassandra-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-cassandra-bundle/pom.xml  |   4 +-
 .../nifi-ccda-bundle/nifi-ccda-nar/pom.xml  |   2 +-
 .../nifi-ccda-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-ccda-bundle/pom.xml   |   4 +-
 nifi-nar-bundles/nifi-cdc/nifi-cdc-api/pom.xml  |   2 +-
 .../nifi-cdc-mysql-nar/pom.xml  |   2 +-
 .../nifi-cdc-mysql-processors/pom.xml   |   6 +-
 .../nifi-cdc/nifi-cdc-mysql-bundle/pom.xml  |   4 +-
 nifi-nar-bundles/nifi-cdc/pom.xml   |   2 +-
 .../nifi-couchbase-nar/pom.xml  |   6 +-
 .../nifi-couchbase-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-couchbase-bundle/pom.xml  |   4 +-
 .../nifi-cybersecurity-nar/pom.xml  |   6 +-
 .../nifi-cybersecurity-processors/pom.xml   |   2 +-
 .../nifi-cybersecurity-bundle/pom.xml   |   4 +-
 .../nifi-datadog-nar/pom.xml|   2 +-
 .../nifi-datadog-reporting-task/pom.xml |   2 +-
 nifi-nar-bundles/nifi-datadog-bundle/pom.xml|   4 +-
 .../nifi-elasticsearch-5-nar/pom.xml|   2 +-
 .../nifi-elasticsearch-5-processors/pom.xml |   2 +-
 .../nifi-elasticsearch-nar/pom.xml  |   2 +-
 .../nifi-elasticsearch-processors/pom.xml   |   2 +-
 .../nifi-elasticsearch-bundle/pom.xml   |   6 +-
 

[6/8] nifi git commit: NIFI-3997-RC1prepare for next development iteration

2017-06-05 Thread mcgilman
http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-language-translation-bundle/nifi-language-translation-nar/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-language-translation-bundle/nifi-language-translation-nar/pom.xml
 
b/nifi-nar-bundles/nifi-language-translation-bundle/nifi-language-translation-nar/pom.xml
index 2b44471..d82104c 100644
--- 
a/nifi-nar-bundles/nifi-language-translation-bundle/nifi-language-translation-nar/pom.xml
+++ 
b/nifi-nar-bundles/nifi-language-translation-bundle/nifi-language-translation-nar/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-language-translation-bundle
-1.3.0
+1.3.1-SNAPSHOT
 
 
 nifi-language-translation-nar
@@ -33,7 +33,7 @@
 
 org.apache.nifi
 nifi-yandex-processors
-1.3.0
+1.3.1-SNAPSHOT
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/pom.xml
 
b/nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/pom.xml
index d47aeb0..13a5030 100644
--- 
a/nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/pom.xml
+++ 
b/nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-language-translation-bundle
-1.3.0
+1.3.1-SNAPSHOT
 
 
 nifi-yandex-processors

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-language-translation-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-language-translation-bundle/pom.xml 
b/nifi-nar-bundles/nifi-language-translation-bundle/pom.xml
index 574dfa0..deee1d2 100644
--- a/nifi-nar-bundles/nifi-language-translation-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-language-translation-bundle/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-1.3.0
+1.3.1-SNAPSHOT
 
 
 nifi-language-translation-bundle

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers-nar/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers-nar/pom.xml
 
b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers-nar/pom.xml
index ae0d8b1..e0e5166 100644
--- 
a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers-nar/pom.xml
+++ 
b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers-nar/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-ldap-iaa-providers-bundle
-1.3.0
+1.3.1-SNAPSHOT
 
 nifi-ldap-iaa-providers-nar
 nar

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers/pom.xml
 
b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers/pom.xml
index 5cf4ffe..ff4c008 100644
--- 
a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers/pom.xml
+++ 
b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-ldap-iaa-providers-bundle
-1.3.0
+1.3.1-SNAPSHOT
 
 nifi-ldap-iaa-providers
 jar

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/pom.xml 
b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/pom.xml
index 646dba3..d774011 100644
--- a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-1.3.0
+1.3.1-SNAPSHOT
 
 nifi-ldap-iaa-providers-bundle
 pom
@@ -31,7 +31,7 @@
 
 org.apache.nifi
 nifi-ldap-iaa-providers
-1.3.0
+1.3.1-SNAPSHOT
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-lumberjack-bundle/nifi-lumberjack-nar/pom.xml
--
diff --git 

[5/8] nifi git commit: NIFI-3997-RC1prepare for next development iteration

2017-06-05 Thread mcgilman
http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/pom.xml
index 8083b8d..aa54d86 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/pom.xml
@@ -22,7 +22,7 @@ limitations under the License.

 org.apache.nifi
 nifi-hwx-schema-registry-bundle
-1.3.0
+1.3.1-SNAPSHOT
 
 
nifi-hwx-schema-registry-service

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/pom.xml
index 2ff11c0..c07fbfd 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-standard-services
-1.3.0
+1.3.1-SNAPSHOT
 
 
 nifi-hwx-schema-registry-bundle

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-standard-services/nifi-load-distribution-service-api/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-load-distribution-service-api/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-load-distribution-service-api/pom.xml
index 5b7c8b0..e18d735 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-load-distribution-service-api/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-load-distribution-service-api/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-standard-services
-1.3.0
+1.3.1-SNAPSHOT
 
 nifi-load-distribution-service-api
 jar

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-service-api/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-service-api/pom.xml 
b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-service-api/pom.xml
index 4d48039..506aa52 100644
--- a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-service-api/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-service-api/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-standard-services
-1.3.0
+1.3.1-SNAPSHOT
 
 
 nifi-lookup-service-api

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services-nar/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services-nar/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services-nar/pom.xml
index 24edeee..d3c93a8 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services-nar/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services-nar/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-lookup-services-bundle
-1.3.0
+1.3.1-SNAPSHOT
 
 nifi-lookup-services-nar
 nar

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services/pom.xml
index ace9bb9..6781dd0 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services/pom.xml
@@ -13,7 +13,7 @@
 
 org.apache.nifi
 nifi-lookup-services-bundle
-1.3.0
+1.3.1-SNAPSHOT
 
 nifi-lookup-services
 jar


[2/8] nifi git commit: NIFI-3997-RC1prepare release nifi-1.3.0-RC1

2017-06-05 Thread mcgilman
http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-language-translation-bundle/nifi-language-translation-nar/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-language-translation-bundle/nifi-language-translation-nar/pom.xml
 
b/nifi-nar-bundles/nifi-language-translation-bundle/nifi-language-translation-nar/pom.xml
index 5e664b6..2b44471 100644
--- 
a/nifi-nar-bundles/nifi-language-translation-bundle/nifi-language-translation-nar/pom.xml
+++ 
b/nifi-nar-bundles/nifi-language-translation-bundle/nifi-language-translation-nar/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-language-translation-bundle
-1.3.0-SNAPSHOT
+1.3.0
 
 
 nifi-language-translation-nar
@@ -33,7 +33,7 @@
 
 org.apache.nifi
 nifi-yandex-processors
-1.3.0-SNAPSHOT
+1.3.0
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/pom.xml
 
b/nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/pom.xml
index 7aad0cb..d47aeb0 100644
--- 
a/nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/pom.xml
+++ 
b/nifi-nar-bundles/nifi-language-translation-bundle/nifi-yandex-processors/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-language-translation-bundle
-1.3.0-SNAPSHOT
+1.3.0
 
 
 nifi-yandex-processors

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-language-translation-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-language-translation-bundle/pom.xml 
b/nifi-nar-bundles/nifi-language-translation-bundle/pom.xml
index 34ce03b..574dfa0 100644
--- a/nifi-nar-bundles/nifi-language-translation-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-language-translation-bundle/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-1.3.0-SNAPSHOT
+1.3.0
 
 
 nifi-language-translation-bundle

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers-nar/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers-nar/pom.xml
 
b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers-nar/pom.xml
index 471acb5..ae0d8b1 100644
--- 
a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers-nar/pom.xml
+++ 
b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers-nar/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-ldap-iaa-providers-bundle
-1.3.0-SNAPSHOT
+1.3.0
 
 nifi-ldap-iaa-providers-nar
 nar

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers/pom.xml
 
b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers/pom.xml
index 1a141dd..5cf4ffe 100644
--- 
a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers/pom.xml
+++ 
b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/nifi-ldap-iaa-providers/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-ldap-iaa-providers-bundle
-1.3.0-SNAPSHOT
+1.3.0
 
 nifi-ldap-iaa-providers
 jar

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/pom.xml 
b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/pom.xml
index 110d74e..646dba3 100644
--- a/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-ldap-iaa-providers-bundle/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-1.3.0-SNAPSHOT
+1.3.0
 
 nifi-ldap-iaa-providers-bundle
 pom
@@ -31,7 +31,7 @@
 
 org.apache.nifi
 nifi-ldap-iaa-providers
-1.3.0-SNAPSHOT
+1.3.0
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-lumberjack-bundle/nifi-lumberjack-nar/pom.xml
--
diff --git 

[1/8] nifi git commit: NIFI-3997-RC1prepare release nifi-1.3.0-RC1

2017-06-05 Thread mcgilman
Repository: nifi
Updated Branches:
  refs/heads/NIFI-3997-RC1 [created] 6ee12e9b4


http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/pom.xml
index 79dbc84..8083b8d 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/nifi-hwx-schema-registry-service/pom.xml
@@ -22,7 +22,7 @@ limitations under the License.

 org.apache.nifi
 nifi-hwx-schema-registry-bundle
-1.3.0-SNAPSHOT
+1.3.0
 
 
nifi-hwx-schema-registry-service

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/pom.xml
index b9ca9af..2ff11c0 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-hwx-schema-registry-bundle/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-standard-services
-1.3.0-SNAPSHOT
+1.3.0
 
 
 nifi-hwx-schema-registry-bundle

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-standard-services/nifi-load-distribution-service-api/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-load-distribution-service-api/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-load-distribution-service-api/pom.xml
index 22eba28..5b7c8b0 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-load-distribution-service-api/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-load-distribution-service-api/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-standard-services
-1.3.0-SNAPSHOT
+1.3.0
 
 nifi-load-distribution-service-api
 jar

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-standard-services/nifi-lookup-service-api/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-service-api/pom.xml 
b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-service-api/pom.xml
index 127895a..4d48039 100644
--- a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-service-api/pom.xml
+++ b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-service-api/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-standard-services
-1.3.0-SNAPSHOT
+1.3.0
 
 
 nifi-lookup-service-api

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services-nar/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services-nar/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services-nar/pom.xml
index c73f246..24edeee 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services-nar/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services-nar/pom.xml
@@ -17,7 +17,7 @@
 
 org.apache.nifi
 nifi-lookup-services-bundle
-1.3.0-SNAPSHOT
+1.3.0
 
 nifi-lookup-services-nar
 nar

http://git-wip-us.apache.org/repos/asf/nifi/blob/ddb73612/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services/pom.xml
 
b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services/pom.xml
index a76731a..ace9bb9 100644
--- 
a/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services/pom.xml
+++ 
b/nifi-nar-bundles/nifi-standard-services/nifi-lookup-services-bundle/nifi-lookup-services/pom.xml
@@ -1,5 +1,4 @@
-http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
-

[7/8] nifi git commit: NIFI-3997-RC1prepare for next development iteration

2017-06-05 Thread mcgilman
http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/pom.xml 
b/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/pom.xml
index 38901e1..6670d43 100644
--- a/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/pom.xml
+++ b/nifi-nar-bundles/nifi-extension-utils/nifi-processor-utils/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-extension-utils
-1.3.0
+1.3.1-SNAPSHOT
 
 nifi-processor-utils
 jar

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/pom.xml
 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/pom.xml
index b95aa18..a12987c 100644
--- 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/pom.xml
+++ 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-avro-record-utils/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-record-utils
-1.3.0
+1.3.1-SNAPSHOT
 
 
 nifi-avro-record-utils

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/pom.xml
 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/pom.xml
index 040f405..c311c95 100644
--- 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/pom.xml
+++ 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-hadoop-record-utils/pom.xml
@@ -18,10 +18,10 @@
 
 org.apache.nifi
 nifi-record-utils
-1.3.0
+1.3.1-SNAPSHOT
 
 nifi-hadoop-record-utils
-1.3.0
+1.3.1-SNAPSHOT
 jar
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-mock-record-utils/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-mock-record-utils/pom.xml
 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-mock-record-utils/pom.xml
index 0639997..83aa40b 100644
--- 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-mock-record-utils/pom.xml
+++ 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-mock-record-utils/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-record-utils
-1.3.0
+1.3.1-SNAPSHOT
 
 
 nifi-mock-record-utils

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/pom.xml
--
diff --git 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/pom.xml
 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/pom.xml
index dd20999..3edb1d9 100644
--- 
a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/pom.xml
+++ 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/nifi-standard-record-utils/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-record-utils
-1.3.0
+1.3.1-SNAPSHOT
 
 
 nifi-standard-record-utils

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/pom.xml 
b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/pom.xml
index 8db4659..54e24c1 100644
--- a/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/pom.xml
+++ b/nifi-nar-bundles/nifi-extension-utils/nifi-record-utils/pom.xml
@@ -18,7 +18,7 @@
 
 org.apache.nifi
 nifi-extension-utils
-1.3.0
+1.3.1-SNAPSHOT
 
 pom
 nifi-record-utils

http://git-wip-us.apache.org/repos/asf/nifi/blob/6ee12e9b/nifi-nar-bundles/nifi-extension-utils/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-extension-utils/pom.xml 
b/nifi-nar-bundles/nifi-extension-utils/pom.xml
index fd42ef4..19a6a14 100644
--- a/nifi-nar-bundles/nifi-extension-utils/pom.xml
+++ b/nifi-nar-bundles/nifi-extension-utils/pom.xml
@@ -18,7 +18,7 @@
 

[jira] [Commented] (MINIFI-177) Incorporate RAT into C++ build

2017-06-05 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/MINIFI-177?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16037177#comment-16037177
 ] 

ASF GitHub Bot commented on MINIFI-177:
---

Github user asfgit closed the pull request at:

https://github.com/apache/nifi-minifi-cpp/pull/103


> Incorporate RAT into C++ build
> --
>
> Key: MINIFI-177
> URL: https://issues.apache.org/jira/browse/MINIFI-177
> Project: Apache NiFi MiNiFi
>  Issue Type: Task
>  Components: Build, C++
>Reporter: Aldrin Piri
>Assignee: Aldrin Piri
>
> To aid in releases and compliance, it would be helpful to incorporate the RAT 
> into the C++ build process. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


nifi-minifi-cpp git commit: MINIFI-177 - Apache RAT build integration

2017-06-05 Thread brosander
Repository: nifi-minifi-cpp
Updated Branches:
  refs/heads/master 73ecc6671 -> 22657c48a


MINIFI-177 - Apache RAT build integration

Incorporating Apache RAT to build with a custom target of
apache-rat.  Updating non-compliant files and/or listing exclusions
in .rat-excludes

This commit introduces a separate CMake file to manage the acquisition
of the RAT binary.

Run RAT as part of Travis builds.

This closes #103.

Signed-off-by: Bryan Rosander 


Project: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/commit/22657c48
Tree: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/tree/22657c48
Diff: http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/diff/22657c48

Branch: refs/heads/master
Commit: 22657c48aece3791c66ef31b537bad1fdf435fcd
Parents: 73ecc66
Author: Aldrin Piri 
Authored: Tue May 23 12:47:12 2017 -0400
Committer: Bryan Rosander 
Committed: Mon Jun 5 12:27:24 2017 -0400

--
 .gitignore  | 19 
 .travis.yml |  2 +-
 CMakeLists.txt  |  8 +++-
 cmake/RunApacheRAT.cmake| 47 
 examples/iOSPort/iOSPortREADME.md   | 15 +++
 libminifi/cmake/iOS.cmake   | 17 +++
 libminifi/test/Server.cpp   | 18 
 .../test/resources/TestControllerServices.yml   | 18 
 .../test/resources/TestProvenanceReporting.yml  | 18 
 thirdparty/apache-rat/.rat-excludes |  8 
 10 files changed, 168 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/22657c48/.gitignore
--
diff --git a/.gitignore b/.gitignore
index 990e6c4..4a4c064 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,21 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
 # Standard ignores
 .DS_Store
 
@@ -28,6 +46,7 @@ thirdparty/**/*.o
 thirdparty/**/*.a
 libminifi/test/**/*.a
 docs/generated
+thirdparty/apache-rat/apache-rat*
 
 # Ignore source files that have been placed in the docker directory during 
build
 docker/minificppsource

http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/22657c48/.travis.yml
--
diff --git a/.travis.yml b/.travis.yml
index 61cbbee..b74f40d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -63,4 +63,4 @@ matrix:
 - package='graphviz'; [[ $(brew ls --versions ${package}) ]] && { brew 
outdated ${package} || brew upgrade ${package}; } || brew install ${package}
 
 script:
-  - mkdir ./build && cd ./build && cmake .. && make VERBOSE=1 && make test 
ARGS="--output-on-failure" && make linter && make docs
+  - mkdir ./build && cd ./build && cmake .. && make VERBOSE=1 && make test 
ARGS="--output-on-failure" && make linter && make apache-rat && make docs

http://git-wip-us.apache.org/repos/asf/nifi-minifi-cpp/blob/22657c48/CMakeLists.txt
--
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7c65d14..fdae7ea 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -154,4 +154,10 @@ include(DockerConfig)
 add_custom_target(
 linter
 COMMAND ${CMAKE_SOURCE_DIR}/thirdparty/google-styleguide/run_linter.sh 
${CMAKE_SOURCE_DIR}/libminifi/include/ ${CMAKE_SOURCE_DIR}/libminifi/src/
-COMMAND ${CMAKE_SOURCE_DIR}/thirdparty/google-styleguide/run_linter.sh 
${CMAKE_SOURCE_DIR}/libminifi/include/ ${CMAKE_SOURCE_DIR}/libminifi/test/ )
\ No newline at end of file
+COMMAND ${CMAKE_SOURCE_DIR}/thirdparty/google-styleguide/run_linter.sh 
${CMAKE_SOURCE_DIR}/libminifi/include/ ${CMAKE_SOURCE_DIR}/libminifi/test/ )
+
+# Custom target to download and run Apache Release Audit Tool (RAT)
+add_custom_target(
+apache-rat
+${CMAKE_COMMAND} -P ${CMAKE_SOURCE_DIR}/cmake/RunApacheRAT.cmake
+COMMAND java -jar 

[jira] [Commented] (MINIFI-177) Incorporate RAT into C++ build

2017-06-05 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/MINIFI-177?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16037176#comment-16037176
 ] 

ASF subversion and git services commented on MINIFI-177:


Commit 22657c48aece3791c66ef31b537bad1fdf435fcd in nifi-minifi-cpp's branch 
refs/heads/master from [~aldrin]
[ https://git-wip-us.apache.org/repos/asf?p=nifi-minifi-cpp.git;h=22657c4 ]

MINIFI-177 - Apache RAT build integration

Incorporating Apache RAT to build with a custom target of
apache-rat.  Updating non-compliant files and/or listing exclusions
in .rat-excludes

This commit introduces a separate CMake file to manage the acquisition
of the RAT binary.

Run RAT as part of Travis builds.

This closes #103.

Signed-off-by: Bryan Rosander 


> Incorporate RAT into C++ build
> --
>
> Key: MINIFI-177
> URL: https://issues.apache.org/jira/browse/MINIFI-177
> Project: Apache NiFi MiNiFi
>  Issue Type: Task
>  Components: Build, C++
>Reporter: Aldrin Piri
>Assignee: Aldrin Piri
>
> To aid in releases and compliance, it would be helpful to incorporate the RAT 
> into the C++ build process. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (MINIFI-177) Incorporate RAT into C++ build

2017-06-05 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/MINIFI-177?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16037164#comment-16037164
 ] 

ASF GitHub Bot commented on MINIFI-177:
---

Github user brosander commented on the issue:

https://github.com/apache/nifi-minifi-cpp/pull/103
  
+1 LGTM


> Incorporate RAT into C++ build
> --
>
> Key: MINIFI-177
> URL: https://issues.apache.org/jira/browse/MINIFI-177
> Project: Apache NiFi MiNiFi
>  Issue Type: Task
>  Components: Build, C++
>Reporter: Aldrin Piri
>Assignee: Aldrin Piri
>
> To aid in releases and compliance, it would be helpful to incorporate the RAT 
> into the C++ build process. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (MINIFI-262) Configuration Listener in C++ client to support C2 operations

2017-06-05 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/MINIFI-262?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16037128#comment-16037128
 ] 

ASF GitHub Bot commented on MINIFI-262:
---

Github user benqiu2016 commented on the issue:

https://github.com/apache/nifi-minifi-cpp/pull/107
  
@phrocker please review.


> Configuration Listener in C++ client to support C2 operations
> -
>
> Key: MINIFI-262
> URL: https://issues.apache.org/jira/browse/MINIFI-262
> Project: Apache NiFi MiNiFi
>  Issue Type: New Feature
>  Components: C++, Command and Control
>Reporter: marco polo
>Assignee: bqiu
>
> Create the concept of configuration listener support a variety of 
> implementations that will restart operations for the MiNiFi C++ agent. 
> The listener will implement a listener that will restart the MiNiFi process. 
> MiNiFi-263 will include the work to implement the configuration listener 
> interface. 



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)