You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2019/08/22 11:28:54 UTC

[ant] branch master updated: maybe build deletes the downloaded archive?

This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ant.git


The following commit(s) were added to refs/heads/master by this push:
     new 29398ef  maybe build deletes the downloaded archive?
29398ef is described below

commit 29398efbc2ac757aa45bfe89771728821b063597
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Thu Aug 22 13:28:30 2019 +0200

    maybe build deletes the downloaded archive?
---
 sonarqube.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sonarqube.xml b/sonarqube.xml
index 6f09e00..7d97169 100644
--- a/sonarqube.xml
+++ b/sonarqube.xml
@@ -10,7 +10,7 @@
   <property name="downloads" location="build/downloads"/>
   <property name="sonarqube-ant-task-jar" location="${downloads}/sonarqube-ant-task.jar"/>
   <property name="sonarqube-ant-task-url"
-            value="https://binaries.sonarsource.com/Distribution/sonarqube-ant-task/sonarqube-ant-task-2.5.jar"/>
+            value="https://binaries.sonarsource.com/Distribution/sonarqube-ant-task/sonarqube-ant-task-2.6.0.1426.jar"/>
 
   <target name="download">
     <mkdir dir="${downloads}"/>
@@ -23,7 +23,7 @@
     </ant>
   </target>
 
-  <target name="sonar" depends="download,build-classes">
+  <target name="sonar" depends="build-classes,download">
     <taskdef uri="antlib:org.sonar.ant" resource="org/sonar/ant/antlib.xml">
         <classpath path="${sonarqube-ant-task-jar}" />
     </taskdef>