You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2006/09/27 05:13:47 UTC

svn commit: r450296 - /incubator/activemq/activemq-dotnet/trunk/pom.xml

Author: chirino
Date: Tue Sep 26 20:13:47 2006
New Revision: 450296

URL: http://svn.apache.org/viewvc?view=rev&rev=450296
Log:
Use a property for the activemq-core directory so that it can be overriden on the commandline.

Modified:
    incubator/activemq/activemq-dotnet/trunk/pom.xml

Modified: incubator/activemq/activemq-dotnet/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-dotnet/trunk/pom.xml?view=diff&rev=450296&r1=450295&r2=450296
==============================================================================
--- incubator/activemq/activemq-dotnet/trunk/pom.xml (original)
+++ incubator/activemq/activemq-dotnet/trunk/pom.xml Tue Sep 26 20:13:47 2006
@@ -50,7 +50,7 @@
         <configuration>
           <tasks>
             <taskdef name="generate" classname="org.apache.activemq.openwire.tool.CSharpGeneratorTask"/>
-            <generate version="2" source="../activemq-trunk/activemq-core" target="${basedir}"/>
+            <generate version="2" source="${activemq-core-dir}" target="${basedir}"/>
           </tasks>
         </configuration>
         <dependencies>
@@ -186,4 +186,7 @@
     -->
   </dependencies>
 
+  <properties>
+    <activemq-core-dir>../activemq-trunk/activemq-core</activemq-core-dir>
+  </properties>
 </project>