You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2014/04/19 08:07:31 UTC

[4/4] git commit: [flex-asjs] [refs/heads/develop] - add asdoc signin

add asdoc signin


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/284187bd
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/284187bd
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/284187bd

Branch: refs/heads/develop
Commit: 284187bdf11b40c926fe8c1cb4ece3d1ae06d748
Parents: a617ed7
Author: Alex Harui <ah...@apache.org>
Authored: Fri Apr 18 23:06:56 2014 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Fri Apr 18 23:06:56 2014 -0700

----------------------------------------------------------------------
 build.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/284187bd/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 79903b2..b7c767a 100644
--- a/build.xml
+++ b/build.xml
@@ -1589,4 +1589,19 @@
         </exec>
     </target>
         
+	<target name="doc-create-md5" >
+		<echo message="Generating MD5 hashes for doc artifacts"/>
+		<checksum algorithm="md5" file="${basedir}/out/${kit.prefix}-asdocs.zip" forceOverwrite="yes"/>
+	</target>
+	
+    <target name="doc-sign" >
+        <exec executable="gpg">
+            <arg value="--armor" />
+            <arg value="--output" />
+            <arg value="${basedir}/out/${kit.prefix}-asdocs.zip.asc" />
+            <arg value="--detach-sig" />
+            <arg value="${basedir}/out/${kit.prefix}-asdocs.zip" />
+        </exec>
+	</target>
+	
 </project>