You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2017/05/17 18:24:25 UTC

[1/2] ant-ivy git commit: Fix download URL for findbugs task

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 <ja...@gmail.com>
Authored: Wed May 17 21:08:05 2017 +0530
Committer: Jaikiran Pai <ja...@gmail.com>
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"


[2/2] ant-ivy git commit: This closes #16

Posted by hi...@apache.org.
This closes #16


Project: http://git-wip-us.apache.org/repos/asf/ant-ivy/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant-ivy/commit/7a8d27f5
Tree: http://git-wip-us.apache.org/repos/asf/ant-ivy/tree/7a8d27f5
Diff: http://git-wip-us.apache.org/repos/asf/ant-ivy/diff/7a8d27f5

Branch: refs/heads/master
Commit: 7a8d27f5b879ee77f695a1d0f3e425f1b2e4c7af
Parents: 10e19b9 6390a33
Author: Nicolas Lalevée <ni...@hibnet.org>
Authored: Wed May 17 20:23:56 2017 +0200
Committer: Nicolas Lalevée <ni...@hibnet.org>
Committed: Wed May 17 20:23:56 2017 +0200

----------------------------------------------------------------------
 build.xml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------