Repository: ant-ivy Updated Branches: refs/heads/master 10e19b91f -> 7a8d27f5b
Fix download URL for findbugs task Project: http://git-wip-us.apache.org/repos/asf/ant-ivy/repo Commit: http://git-wip-us.apache.org/repos/asf/ant-ivy/commit/6390a33f Tree: http://git-wip-us.apache.org/repos/asf/ant-ivy/tree/6390a33f Diff: http://git-wip-us.apache.org/repos/asf/ant-ivy/diff/6390a33f Branch: refs/heads/master Commit: 6390a33f40dd9ef478de06da17b929143dac1392 Parents: a3a4010 Author: Jaikiran Pai <[email protected]> Authored: Wed May 17 21:08:05 2017 +0530 Committer: Jaikiran Pai <[email protected]> Committed: Wed May 17 21:09:31 2017 +0530 ---------------------------------------------------------------------- build.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/6390a33f/build.xml ---------------------------------------------------------------------- diff --git a/build.xml b/build.xml index bb635c1..d6f50b5 100644 --- a/build.xml +++ b/build.xml @@ -606,14 +606,17 @@ <target name="init-findbugs" unless="findbugs.home"> <!-- Findbugs: Getting Findbugs --> + <property name="findbugs.version" + value="1.3.5" + description="Version of Findbugs to use"/> <property name="findbugs.download.name" - value="findbugs-1.3.5" + value="findbugs-${findbugs.version}" description="Name of the download file without suffix. Also the internal root directory of the ZIP."/> <property name="findbugs.download.file" value="${findbugs.download.name}.zip" description="The filename of the ZIP."/> <property name="findbugs.download.url" - value="http://garr.dl.sourceforge.net/sourceforge/findbugs/${findbugs.download.file}" + value="https://jaist.dl.sourceforge.net/project/findbugs/findbugs/${findbugs.version}/${findbugs.download.file}" description="The download adress at a mirror of Sourceforge."/> <property name="findbugs.download.to" value="${build.dir}/.downloads"
