You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jg...@apache.org on 2008/12/06 00:24:05 UTC

svn commit: r723917 - in /activemq/activemq-dotnet: Apache.NMS.ActiveMQ/trunk/nant-common.xml Apache.NMS.EMS/trunk/nant-common.xml Apache.NMS.MSMQ/trunk/nant-common.xml Apache.NMS.WCF/trunk/nant-common.xml Apache.NMS/trunk/nant-common.xml

Author: jgomes
Date: Fri Dec  5 15:24:02 2008
New Revision: 723917

URL: http://svn.apache.org/viewvc?rev=723917&view=rev
Log:
Fixed setting nant.local.repo variable.

Modified:
    activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/nant-common.xml
    activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml
    activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/nant-common.xml
    activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant-common.xml
    activemq/activemq-dotnet/Apache.NMS/trunk/nant-common.xml

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=723917&r1=723916&r2=723917&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/nant-common.xml Fri Dec  5 15:24:02 2008
@@ -63,12 +63,15 @@
             unless="${property::exists('user.home')}" if="${platform::is-win32()}"/>
 
   <!-- Figure out the NANT repositories-->
-  <property name="nant.repo" value="${environment::get-variable('NANT_REPO')}"
+  <property name="nant.remote.repo" value="${environment::get-variable('NANT_REMOTE_REPO')}"
+            if="${environment::variable-exists('NANT_REMOTE_REPO')}"
+            unless="${property::exists('nant.remote.repo')}"/>
+  <property name="nant.local.repo" value="${environment::get-variable('NANT_REPO')}"
             if="${environment::variable-exists('NANT_REPO')}"
-            unless="${property::exists('nant.repo')}"/>
+            unless="${property::exists('nant.local.repo')}"/>
   <property name="nant.local.repo" value="${user.home}/.nant/repository"
             unless="${property::exists('nant.local.repo')}"/>
-
+			
   <!-- ============================================================================================ -->
   <!--      I N I T I A L I Z A T I O N     T A R G E T S                                           -->
   <!-- ============================================================================================ -->

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=723917&r1=723916&r2=723917&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS.EMS/trunk/nant-common.xml Fri Dec  5 15:24:02 2008
@@ -63,12 +63,15 @@
             unless="${property::exists('user.home')}" if="${platform::is-win32()}"/>
 
   <!-- Figure out the NANT repositories-->
-  <property name="nant.repo" value="${environment::get-variable('NANT_REPO')}"
+  <property name="nant.remote.repo" value="${environment::get-variable('NANT_REMOTE_REPO')}"
+            if="${environment::variable-exists('NANT_REMOTE_REPO')}"
+            unless="${property::exists('nant.remote.repo')}"/>
+  <property name="nant.local.repo" value="${environment::get-variable('NANT_REPO')}"
             if="${environment::variable-exists('NANT_REPO')}"
-            unless="${property::exists('nant.repo')}"/>
+            unless="${property::exists('nant.local.repo')}"/>
   <property name="nant.local.repo" value="${user.home}/.nant/repository"
             unless="${property::exists('nant.local.repo')}"/>
-
+			
   <!-- ============================================================================================ -->
   <!--      I N I T I A L I Z A T I O N     T A R G E T S                                           -->
   <!-- ============================================================================================ -->

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=723917&r1=723916&r2=723917&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/nant-common.xml Fri Dec  5 15:24:02 2008
@@ -63,12 +63,15 @@
             unless="${property::exists('user.home')}" if="${platform::is-win32()}"/>
 
   <!-- Figure out the NANT repositories-->
-  <property name="nant.repo" value="${environment::get-variable('NANT_REPO')}"
+  <property name="nant.remote.repo" value="${environment::get-variable('NANT_REMOTE_REPO')}"
+            if="${environment::variable-exists('NANT_REMOTE_REPO')}"
+            unless="${property::exists('nant.remote.repo')}"/>
+  <property name="nant.local.repo" value="${environment::get-variable('NANT_REPO')}"
             if="${environment::variable-exists('NANT_REPO')}"
-            unless="${property::exists('nant.repo')}"/>
+            unless="${property::exists('nant.local.repo')}"/>
   <property name="nant.local.repo" value="${user.home}/.nant/repository"
             unless="${property::exists('nant.local.repo')}"/>
-
+			
   <!-- ============================================================================================ -->
   <!--      I N I T I A L I Z A T I O N     T A R G E T S                                           -->
   <!-- ============================================================================================ -->

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=723917&r1=723916&r2=723917&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS.WCF/trunk/nant-common.xml Fri Dec  5 15:24:02 2008
@@ -63,12 +63,15 @@
             unless="${property::exists('user.home')}" if="${platform::is-win32()}"/>
 
   <!-- Figure out the NANT repositories-->
-  <property name="nant.repo" value="${environment::get-variable('NANT_REPO')}"
+  <property name="nant.remote.repo" value="${environment::get-variable('NANT_REMOTE_REPO')}"
+            if="${environment::variable-exists('NANT_REMOTE_REPO')}"
+            unless="${property::exists('nant.remote.repo')}"/>
+  <property name="nant.local.repo" value="${environment::get-variable('NANT_REPO')}"
             if="${environment::variable-exists('NANT_REPO')}"
-            unless="${property::exists('nant.repo')}"/>
+            unless="${property::exists('nant.local.repo')}"/>
   <property name="nant.local.repo" value="${user.home}/.nant/repository"
             unless="${property::exists('nant.local.repo')}"/>
-
+			
   <!-- ============================================================================================ -->
   <!--      I N I T I A L I Z A T I O N     T A R G E T S                                           -->
   <!-- ============================================================================================ -->

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=723917&r1=723916&r2=723917&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/nant-common.xml (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/nant-common.xml Fri Dec  5 15:24:02 2008
@@ -63,12 +63,15 @@
             unless="${property::exists('user.home')}" if="${platform::is-win32()}"/>
 
   <!-- Figure out the NANT repositories-->
-  <property name="nant.repo" value="${environment::get-variable('NANT_REPO')}"
+  <property name="nant.remote.repo" value="${environment::get-variable('NANT_REMOTE_REPO')}"
+            if="${environment::variable-exists('NANT_REMOTE_REPO')}"
+            unless="${property::exists('nant.remote.repo')}"/>
+  <property name="nant.local.repo" value="${environment::get-variable('NANT_REPO')}"
             if="${environment::variable-exists('NANT_REPO')}"
-            unless="${property::exists('nant.repo')}"/>
+            unless="${property::exists('nant.local.repo')}"/>
   <property name="nant.local.repo" value="${user.home}/.nant/repository"
             unless="${property::exists('nant.local.repo')}"/>
-
+			
   <!-- ============================================================================================ -->
   <!--      I N I T I A L I Z A T I O N     T A R G E T S                                           -->
   <!-- ============================================================================================ -->