You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pi...@apache.org on 2017/11/06 14:13:16 UTC

git commit: [flex-utilities] [refs/heads/develop] - Fix path to apache-rat-tasks-0.11.jar in releasecandidate.xml for Installer

Repository: flex-utilities
Updated Branches:
  refs/heads/develop 60d76022f -> 45f908f02


Fix path to apache-rat-tasks-0.11.jar in releasecandidate.xml for Installer


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/45f908f0
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/45f908f0
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/45f908f0

Branch: refs/heads/develop
Commit: 45f908f027b867f543d507fee4946e75c8bc6830
Parents: 60d7602
Author: Piotr Zarzycki <pi...@gmail.com>
Authored: Mon Nov 6 15:13:10 2017 +0100
Committer: Piotr Zarzycki <pi...@gmail.com>
Committed: Mon Nov 6 15:13:10 2017 +0100

----------------------------------------------------------------------
 flex-installer/releasecandidate.xml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/45f908f0/flex-installer/releasecandidate.xml
----------------------------------------------------------------------
diff --git a/flex-installer/releasecandidate.xml b/flex-installer/releasecandidate.xml
index aafe525..7c58a57 100644
--- a/flex-installer/releasecandidate.xml
+++ b/flex-installer/releasecandidate.xml
@@ -51,7 +51,8 @@
 	<property name="rat.report" value="${basedir}/rat-report.txt"/>
 	<property name="apache.rat.jar" value="apache-rat-0.11.jar" />
 	<property name="apache.rat.tasks.jar" value="apache-rat-tasks-0.11.jar" />
-	<property name="apache.rat.url" value="http://search.maven.org/remotecontent?filepath=org/apache/rat/apache-rat/0.11" />
+	<property name="apache.rat.url" value="http://search.maven.org/remotecontent?filepath=org/apache/rat/apache-rat/0.11"/>
+	<property name="apache.rat.tasks.url" value="http://search.maven.org/remotecontent?filepath=org/apache/rat/apache-rat-tasks/0.11"/>
     
 	<property file="${basedir}/local.properties" />
 	<condition property="CERT_PASSWORD_FILE" value="${CERT_PASSWORD_FILE_WIN}" >
@@ -203,7 +204,7 @@
 		<get src="${apache.rat.url}/${apache.rat.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.jar}" />
 	</target>
 	<target name="install-rat.tasks.jar" unless="apache.rat.tasks.found">
-		<get src="${apache.rat.url}/${apache.rat.tasks.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.tasks.jar}" />
+		<get src="${apache.rat.tasks.url}/${apache.rat.tasks.jar}" dest="${env.ANT_HOME}/lib/${apache.rat.tasks.jar}" />
 	</target>
 	
     <target name="rat-taskdef" description="Rat taskdef">