diff options
author | Simon Steiner <ssteiner@apache.org> | 2018-05-14 08:31:50 +0000 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2018-05-14 08:31:50 +0000 |
commit | 79c3a3e7950a61d88cc8130b2738c23b6985de8e (patch) | |
tree | d2669c10bc39c459ef497deb4bed114d65af0256 /fop | |
parent | 32dda6a7507626da3aa83eb952a247f08b384fe7 (diff) | |
download | xmlgraphics-fop-79c3a3e7950a61d88cc8130b2738c23b6985de8e.tar.gz xmlgraphics-fop-79c3a3e7950a61d88cc8130b2738c23b6985de8e.zip |
Add changes for release
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1831549 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'fop')
-rw-r--r-- | fop/build.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/fop/build.xml b/fop/build.xml index 8acb727d9..108efa11c 100644 --- a/fop/build.xml +++ b/fop/build.xml @@ -156,7 +156,7 @@ list of possible build targets. <property name="name" value="fop"/> <property name="NAME" value="FOP"/> <property name="version" value="2.3.0-SNAPSHOT"/> - <property name="year" value="1999-2017"/> + <property name="year" value="1999-2018"/> <property name="javac.debug" value="on"/> <property name="javac.optimize" value="off"/> <property name="javac.deprecation" value="on"/> @@ -1311,28 +1311,28 @@ NOTE: <target name="release-dist" depends="dist" description="Generates the distribution package and signs the release"> <property name="bin.suffix" value="bin"/> <input message="Passphrase for your default private key (attention: passphrase will be echoed in clear text on the display!)" addproperty="pwd"/> - <antcall target="sha256"> + <antcall target="sha512"> <param name="sign.archive" value="${name}-${version}-src.zip"/> </antcall> <antcall target="sign-file"> <param name="sign.archive" value="${name}-${version}-src.zip"/> <param name="pwd" value="${pwd}"/> </antcall> - <antcall target="sha256"> + <antcall target="sha512"> <param name="sign.archive" value="${name}-${version}-src.tar.gz"/> </antcall> <antcall target="sign-file"> <param name="sign.archive" value="${name}-${version}-src.tar.gz"/> <param name="pwd" value="${pwd}"/> </antcall> - <antcall target="sha256"> + <antcall target="sha512"> <param name="sign.archive" value="${name}-${version}-${bin.suffix}.zip"/> </antcall> <antcall target="sign-file"> <param name="sign.archive" value="${name}-${version}-${bin.suffix}.zip"/> <param name="pwd" value="${pwd}"/> </antcall> - <antcall target="sha256"> + <antcall target="sha512"> <param name="sign.archive" value="${name}-${version}-${bin.suffix}.tar.gz"/> </antcall> <antcall target="sign-file"> @@ -1340,11 +1340,11 @@ NOTE: <param name="pwd" value="${pwd}"/> </antcall> </target> - <target name="sha256"> - <property name="sha256.exec" value="sha256sum"/> - <property name="sha256.options" value=""/> - <exec executable="${sha256.exec}" output="${sign.archive}.sha256"> - <arg line="${sha256.options} ${sign.archive}"/> + <target name="sha512"> + <property name="sha512.exec" value="sha512sum"/> + <property name="sha512.options" value=""/> + <exec executable="${sha512.exec}" output="${sign.archive}.sha512"> + <arg line="${sha512.options} ${sign.archive}"/> </exec> </target> <target name="sign-file"> |