This is an automated email from the ASF dual-hosted git repository.

thenatog pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-minifi.git


The following commit(s) were added to refs/heads/master by this push:
     new 6285139  MINIFI-514 Upgrade commons-daemon to 1.2.1
     new 4c04810  Merge pull request #170 from apiri/MINIFI-514
6285139 is described below

commit 62851396d7b89331e5c2c38db630a5f605fe4b47
Author: Aldrin Piri <[email protected]>
AuthorDate: Thu Sep 26 13:27:57 2019 -0400

    MINIFI-514 Upgrade commons-daemon to 1.2.1
---
 minifi-assembly/pom.xml | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/minifi-assembly/pom.xml b/minifi-assembly/pom.xml
index 557cd7f..778e350 100644
--- a/minifi-assembly/pom.xml
+++ b/minifi-assembly/pom.xml
@@ -77,12 +77,11 @@ limitations under the License.
                                     </then>
                                     <else>
                                         <echo message="Downloading Commons 
Daemon Windows binaries." />
-                                        <property name="commons.daemon.file" 
value="commons-daemon-1.2.0-bin-windows.zip" />
-                                        <get 
src="https://apache.claz.org/commons/daemon/binaries/windows/${commons.daemon.file}";
 dest="${java.io.tmpdir}/${commons.daemon.file}" skipexisting="true" />
-                                        <local name="checksum.matches" />
-                                        <property name="sha512sum" 
value="8b6e0bb4172861338e0cb3238f6da715c3cef04a88e8bfab0cbb487ef638aa69fd34de9407b0b2ed54451fbbcbff8a999324289052a581a5d07d6f6ff84a83b6"
 />
-                                        <checksum 
file="${java.io.tmpdir}/${commons.daemon.file}" algorithm="SHA-512" 
property="${sha512sum}" verifyProperty="checksum.matches" />
-                                        <echo message="Checksum match = 
${checksum.matches}" />
+                                        <property name="commons.daemon.file" 
value="commons-daemon-${commons.daemon.version}-bin-windows.zip"/>
+                                        <get 
src="https://apache.claz.org/commons/daemon/binaries/windows/${commons.daemon.file}";
 dest="${java.io.tmpdir}/${commons.daemon.file}" skipexisting="true"/>
+                                        <local name="checksum.matches"/>
+                                        <checksum 
file="${java.io.tmpdir}/${commons.daemon.file}" algorithm="SHA-512" 
property="${commons.daemon.sha512sum}" verifyProperty="checksum.matches"/>
+                                        <echo message="Checksum match = 
${checksum.matches}"/>
                                         <condition 
property="checksum.matches.fail">
                                             <equals arg1="${checksum.matches}" 
arg2="false" />
                                         </condition>
@@ -336,6 +335,10 @@ limitations under the License.
         <minifi.jvm.heap.mb>256</minifi.jvm.heap.mb>
         <minifi.jvm.permgen.mb>128</minifi.jvm.permgen.mb>
         <minifi.run.as />
+
+        <!--Commons Daemon Properties-->
+        <commons.daemon.version>1.2.1</commons.daemon.version>
+        
<commons.daemon.sha512sum>62777d2424361162736b4a9b39b9fb4155760d4d7c4a3489fe1868e0912158ae126ef5f42abbd1bcca1dbf5aa6204d8d0029be7c49f222293d6e1421a5173dd7</commons.daemon.sha512sum>
     </properties>
 
 </project>

Reply via email to