You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2017/03/07 15:33:58 UTC

[11/25] activemq-nms-ems git commit: Added command-line option to skip downloading dependent libraries. This gives greater flexibility for debugging with special libraries.

Added command-line option to skip downloading dependent libraries.  This gives greater flexibility for debugging with special libraries.


Project: http://git-wip-us.apache.org/repos/asf/activemq-nms-ems/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-nms-ems/commit/ef707852
Tree: http://git-wip-us.apache.org/repos/asf/activemq-nms-ems/tree/ef707852
Diff: http://git-wip-us.apache.org/repos/asf/activemq-nms-ems/diff/ef707852

Branch: refs/heads/1.5.x
Commit: ef7078520cc6dc468f7dd2d5fc10e97a8bba4722
Parents: 9295e71
Author: Jim Gomes <jg...@apache.org>
Authored: Thu Sep 1 22:21:25 2011 +0000
Committer: Jim Gomes <jg...@apache.org>
Committed: Thu Sep 1 22:21:25 2011 +0000

----------------------------------------------------------------------
 nant-common.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-nms-ems/blob/ef707852/nant-common.xml
----------------------------------------------------------------------
diff --git a/nant-common.xml b/nant-common.xml
index bf7a6ae..1f3e3d3 100644
--- a/nant-common.xml
+++ b/nant-common.xml
@@ -40,6 +40,7 @@
     <property name="build.noskip"            value="false" />
     <property name="build.skip"              value="false" />
     <property name="build.skip.release"      value="false" unless="${property::exists('build.skip.release')}" />
+    <property name="download.skip"           value="false" unless="${property::exists('download.skip')}"/>
     <property name="compile.skip"            value="false" unless="${property::exists('compile.skip')}" />
     <property name="current.build.config"    value="${if(project.release.type == 'release', 'release', 'debug')}" overwrite="false" />
     <property name="current.build.framework" value="${framework::get-target-framework()}" overwrite="false" />
@@ -416,7 +417,7 @@
     <target name="download-vendor" depends="vendor-init, conditional-download"
                 description="Download the vendor artifacts from the nant repo" />
 
-    <target name="conditional-download" unless="${build.skip}"
+    <target name="conditional-download" unless="${build.skip or download.skip}"
                 description="Download the artifacts from the nant repo">
         <!-- Iterate over the defined vendor filesets. -->
         <foreach item="String" in="${vendor.fileset.names}" delim="," property="current.vendor">