Repository: flex-sdk Updated Branches: refs/heads/feature/build-without-pre-existing-sdk fc75cfcd2 -> 8d448cce1
- Replaced an oracle download of javacc with one from maven-central as Oracle doesn't seem to be able to keep their servers up and running. Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/8d448cce Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/8d448cce Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/8d448cce Branch: refs/heads/feature/build-without-pre-existing-sdk Commit: 8d448cce14e3488b5ac4e2efd9395aa4fe4a1e74 Parents: fc75cfc Author: Christofer Dutz <[email protected]> Authored: Wed Sep 30 23:24:19 2015 +0200 Committer: Christofer Dutz <[email protected]> Committed: Wed Sep 30 23:24:19 2015 +0200 ---------------------------------------------------------------------- modules/downloads.xml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/8d448cce/modules/downloads.xml ---------------------------------------------------------------------- diff --git a/modules/downloads.xml b/modules/downloads.xml index 908453f..04099e6 100644 --- a/modules/downloads.xml +++ b/modules/downloads.xml @@ -411,19 +411,11 @@ unless="javacc.jar.exists" description="Downloads and copies javacc.jar to the lib directory."> - <antcall target="download-zip"> - <param name="srcUrl" value="https://java.net/downloads/javacc"/> - <param name="zipFile" value="javacc-5.0.tar.gz"/> - <param name="srcJarPath" value="javacc-5.0/bin/lib/javacc.jar"/> + <antcall target="download-jar"> + <param name="srcUrl" value="http://search.maven.org/remotecontent?filepath=net/java/dev/javacc/javacc/5.0"/> + <param name="srcJarFile" value="javacc-5.0.jar"/> <param name="destJarFile" value="${lib.ext.dir}/javacc.jar"/> </antcall> - <copy todir="${lib.ext.dir}"> - <fileset dir="${download.dir}/javacc-5.0"> - <include name="LICENSE"/> - </fileset> - <globmapper from="*" to="javacc-*"/> - </copy> - <delete dir="${download.dir}/javacc-5.0"/> </target> <!--
