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-msmq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-nms-msmq/commit/3c368d47
Tree: http://git-wip-us.apache.org/repos/asf/activemq-nms-msmq/tree/3c368d47
Diff: http://git-wip-us.apache.org/repos/asf/activemq-nms-msmq/diff/3c368d47

Branch: refs/heads/1.5.x
Commit: 3c368d4741f1592e967f1ab551b28d0c9fc3039a
Parents: d28c6e7
Author: Jim Gomes <[email protected]>
Authored: Thu Sep 1 22:21:25 2011 +0000
Committer: Jim Gomes <[email protected]>
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-msmq/blob/3c368d47/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">

Reply via email to