Repository: flex-sdk Updated Branches: refs/heads/release4.16.0 531c83770 -> a360157e9
Hard code saxon jar name so ant scripts work Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/a360157e Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/a360157e Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/a360157e Branch: refs/heads/release4.16.0 Commit: a360157e9c9347abdf3633044a1e709ec155e3ba Parents: 531c837 Author: Justin Mclean <[email protected]> Authored: Thu Feb 16 11:55:22 2017 +1100 Committer: Justin Mclean <[email protected]> Committed: Thu Feb 16 11:55:22 2017 +1100 ---------------------------------------------------------------------- build.xml | 4 ++-- modules/downloads.xml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a360157e/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index 9fd4ac4..66842ec 100644 --- a/build.xml +++ b/build.xml @@ -566,7 +566,7 @@ <include name="installer.properties/**"/> <include name="CHANGES"/> <include name="LICENSE"/> - <include name="licenseParts/*"/> + <include name="licenseParts/**"/> <include name="NOTICE"/> <include name="README"/> <include name="RELEASE_NOTES"/> @@ -1795,7 +1795,7 @@ There are no known issues. <!-- exclude text files --> <exclude name="CONTRIBUTING"/> <exclude name="CONTRIBUTORS"/> - <exclude name="licenseParts/*"/> + <exclude name="licenseParts/**"/> <exclude name="modules/thirdparty/batik/lib/**/LICENSE*.txt"/> <exclude name="modules/thirdparty/batik/lib/**/README*.txt"/> <exclude name="frameworks/projects/flatspark/src/flatspark/assets/fonts/**/OFL.txt"/> http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/a360157e/modules/downloads.xml ---------------------------------------------------------------------- diff --git a/modules/downloads.xml b/modules/downloads.xml index e4ce73b..95a7666 100644 --- a/modules/downloads.xml +++ b/modules/downloads.xml @@ -450,7 +450,7 @@ description="Copies sax9.jar to the lib directory."> <get src="${saxon9.download.url}" - dest="${download.dir}/${saxon9.jar}" + dest="${download.dir}/saxon9.jar" verbose="false" ignoreerrors="true"/> <antcall target="get-from-cache-if-needed" > @@ -458,16 +458,16 @@ <param name="destDir" value="${download.dir}" /> </antcall> <antcall target="fail-if-not-found" > - <param name="filename" value="${saxon9.jar}" /> + <param name="filename" value="saxon9.jar" /> <param name="destDir" value="${download.dir}" /> </antcall> <copy toDir="${lib.ext.dir}/saxon9-NOTICES" verbose="true"> <fileset dir="${saxon9.notice.dir}" includes="**"/> </copy> - <copy file="${download.dir}/${saxon9.jar}" toDir="${lib.ext.dir}" verbose="true"/> + <copy file="${download.dir}/saxon9.jar" toDir="${lib.ext.dir}" verbose="true"/> - <delete dir="${download.dir}/${saxon9.jar}"/> + <delete dir="${download.dir}/saxon9.jar"/> </target> <!--
