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:12:44 UTC

svn commit: r450295 - /incubator/activemq/activemq-cpp/trunk/openwire-cpp/pom.xml

Author: chirino
Date: Tue Sep 26 20:12:44 2006
New Revision: 450295

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

Modified:
    incubator/activemq/activemq-cpp/trunk/openwire-cpp/pom.xml

Modified: incubator/activemq/activemq-cpp/trunk/openwire-cpp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/openwire-cpp/pom.xml?view=diff&rev=450295&r1=450294&r2=450295
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/openwire-cpp/pom.xml (original)
+++ incubator/activemq/activemq-cpp/trunk/openwire-cpp/pom.xml Tue Sep 26 20:12:44 2006
@@ -37,7 +37,7 @@
         <configuration>
           <tasks>
             <taskdef name="generate" classname="org.apache.activemq.openwire.tool.CppGeneratorTask"/>
-            <generate version="2" source="../../activemq-trunk/activemq-core" target="${basedir}"/>
+            <generate version="2" source="${activemq-core-dir}" target="${basedir}"/>
           </tasks>
         </configuration>
         <dependencies>
@@ -51,5 +51,9 @@
 
     </plugins>
   </build>
+
+  <properties>
+    <activemq-core-dir>../../activemq-trunk/activemq-core</activemq-core-dir>
+  </properties>
 
 </project>