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

[11/15] ant-ivy git commit: Get findbugs working

Get findbugs working

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

Branch: refs/heads/master
Commit: af06da94f9b25acc5feb9431103a3b2ceeb8f4f1
Parents: 3cfc7bf
Author: twogee <g....@gmail.com>
Authored: Sun May 28 15:02:39 2017 +0200
Committer: twogee <g....@gmail.com>
Committed: Sun May 28 15:04:33 2017 +0200

----------------------------------------------------------------------
 build.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/af06da94/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index e16296c..29a48be 100644
--- a/build.xml
+++ b/build.xml
@@ -611,9 +611,9 @@
     </target>
 
     <target name="init-findbugs" unless="findbugs.home">
-        <!-- Findbugs: Getting Findbugs -->
+        <!-- Findbugs: Getting Findbugs requires unlimited strength crypto policy -->
         <property name="findbugs.version"
-                  value="1.3.5"
+                  value="3.0.1"
                   description="Version of Findbugs to use"/>
         <property name="findbugs.download.name"
                   value="findbugs-${findbugs.version}"
@@ -622,7 +622,7 @@
                   value="${findbugs.download.name}.zip"
                   description="The filename of the ZIP."/>
         <property name="findbugs.download.url"
-                  value="https://jaist.dl.sourceforge.net/project/findbugs/findbugs/${findbugs.version}/${findbugs.download.file}"
+                  value="https://sourceforge.net/projects/findbugs/files/findbugs/${findbugs.version}/${findbugs.download.file}/download"
                   description="The download adress at a mirror of Sourceforge."/>
         <property name="findbugs.download.to"
                   value="${build.dir}/.downloads"
@@ -669,7 +669,7 @@
                      output="xml:withMessages"
                      outputFile="${findbugs.reportdir}/${findbugs.raw}"
                      jvmargs="${findbugs.jvmargs}"
-                     projectName="${Name} ${project.version}">
+                     projectName="${ant.project.name} ${target.ivy.version}">
             <class location="${core.classes.build.dir}"/>
             <sourcePath path="${src.dir}"/>
         </fb:findbugs>