Author: jgomes
Date: Thu Sep 1 22:21:25 2011
New Revision: 1164291
URL: http://svn.apache.org/viewvc?rev=1164291&view=rev
Log:
Added command-line option to skip downloading dependent libraries. This gives
greater flexibility for debugging with special libraries.
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.5.x/nant-common.xml
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/nant-common.xml
activemq/activemq-dotnet/Apache.NMS.EMS/branches/1.5.x/nant-common.xml
activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml
activemq/activemq-dotnet/Apache.NMS.MSMQ/branches/1.5.x/nant-common.xml
activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/nant-common.xml
activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/nant-common.xml
activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/nant-common.xml
activemq/activemq-dotnet/Apache.NMS.WCF/branches/1.5.x/nant-common.xml
activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant-common.xml
activemq/activemq-dotnet/Apache.NMS/branches/1.5.x/nant-common.xml
activemq/activemq-dotnet/Apache.NMS/trunk/nant-common.xml
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.5.x/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.5.x/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.5.x/nant-common.xml
(original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.5.x/nant-common.xml
Thu Sep 1 22:21:25 2011
@@ -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">
@@ -468,7 +469,6 @@
<exec program="nunit-console" failonerror="true"
workingdir="build/${current.build.framework}/${current.build.config}">
<arg value="${NUnit.Projectfile}" />
<arg value="-labels" />
- <arg value="-exclude=Manual" />
<arg value="-xml=Nunit.TestOutput.xml" />
</exec>
</if>
Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/nant-common.xml
(original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/nant-common.xml Thu Sep
1 22:21:25 2011
@@ -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">
@@ -468,7 +469,6 @@
<exec program="nunit-console" failonerror="true"
workingdir="build/${current.build.framework}/${current.build.config}">
<arg value="${NUnit.Projectfile}" />
<arg value="-labels" />
- <arg value="-exclude=Manual" />
<arg value="-xml=Nunit.TestOutput.xml" />
</exec>
</if>
Modified: activemq/activemq-dotnet/Apache.NMS.EMS/branches/1.5.x/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.EMS/branches/1.5.x/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.EMS/branches/1.5.x/nant-common.xml
(original)
+++ activemq/activemq-dotnet/Apache.NMS.EMS/branches/1.5.x/nant-common.xml Thu
Sep 1 22:21:25 2011
@@ -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">
Modified: activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml Thu Sep 1
22:21:25 2011
@@ -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">
@@ -468,7 +469,6 @@
<exec program="nunit-console" failonerror="true"
workingdir="build/${current.build.framework}/${current.build.config}">
<arg value="${NUnit.Projectfile}" />
<arg value="-labels" />
- <arg value="-exclude=Manual" />
<arg value="-xml=Nunit.TestOutput.xml" />
</exec>
</if>
Modified:
activemq/activemq-dotnet/Apache.NMS.MSMQ/branches/1.5.x/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.MSMQ/branches/1.5.x/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.MSMQ/branches/1.5.x/nant-common.xml
(original)
+++ activemq/activemq-dotnet/Apache.NMS.MSMQ/branches/1.5.x/nant-common.xml Thu
Sep 1 22:21:25 2011
@@ -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">
Modified: activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/nant-common.xml Thu Sep 1
22:21:25 2011
@@ -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">
@@ -468,7 +469,6 @@
<exec program="nunit-console" failonerror="true"
workingdir="build/${current.build.framework}/${current.build.config}">
<arg value="${NUnit.Projectfile}" />
<arg value="-labels" />
- <arg value="-exclude=Manual" />
<arg value="-xml=Nunit.TestOutput.xml" />
</exec>
</if>
Modified:
activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/nant-common.xml
(original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/branches/1.5.x/nant-common.xml
Thu Sep 1 22:21:25 2011
@@ -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">
Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/nant-common.xml Thu Sep 1
22:21:25 2011
@@ -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">
@@ -468,7 +469,6 @@
<exec program="nunit-console" failonerror="true"
workingdir="build/${current.build.framework}/${current.build.config}">
<arg value="${NUnit.Projectfile}" />
<arg value="-labels" />
- <arg value="-exclude=Manual" />
<arg value="-xml=Nunit.TestOutput.xml" />
</exec>
</if>
Modified: activemq/activemq-dotnet/Apache.NMS.WCF/branches/1.5.x/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.WCF/branches/1.5.x/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.WCF/branches/1.5.x/nant-common.xml
(original)
+++ activemq/activemq-dotnet/Apache.NMS.WCF/branches/1.5.x/nant-common.xml Thu
Sep 1 22:21:25 2011
@@ -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">
Modified: activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant-common.xml Thu Sep 1
22:21:25 2011
@@ -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">
@@ -468,7 +469,6 @@
<exec program="nunit-console" failonerror="true"
workingdir="build/${current.build.framework}/${current.build.config}">
<arg value="${NUnit.Projectfile}" />
<arg value="-labels" />
- <arg value="-exclude=Manual" />
<arg value="-xml=Nunit.TestOutput.xml" />
</exec>
</if>
Modified: activemq/activemq-dotnet/Apache.NMS/branches/1.5.x/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/branches/1.5.x/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/branches/1.5.x/nant-common.xml
(original)
+++ activemq/activemq-dotnet/Apache.NMS/branches/1.5.x/nant-common.xml Thu Sep
1 22:21:25 2011
@@ -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">
Modified: activemq/activemq-dotnet/Apache.NMS/trunk/nant-common.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/nant-common.xml?rev=1164291&r1=1164290&r2=1164291&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/nant-common.xml Thu Sep 1
22:21:25 2011
@@ -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">
@@ -468,7 +469,6 @@
<exec program="nunit-console" failonerror="true"
workingdir="build/${current.build.framework}/${current.build.config}">
<arg value="${NUnit.Projectfile}" />
<arg value="-labels" />
- <arg value="-exclude=Manual" />
<arg value="-xml=Nunit.TestOutput.xml" />
</exec>
</if>