You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2009/02/21 19:59:00 UTC

svn commit: r746566 - /activemq/activemq-cpp/trunk/pom.xml

Author: tabish
Date: Sat Feb 21 18:59:00 2009
New Revision: 746566

URL: http://svn.apache.org/viewvc?rev=746566&view=rev
Log:
Moved the OpenWire Generator code into its own project to make it easier to maintain and add other projects as needed to the activemq-cpp domain.  Slight change to the Pom file for the parent to avoid running the generator twice.

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

Modified: activemq/activemq-cpp/trunk/pom.xml
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/pom.xml?rev=746566&r1=746565&r2=746566&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/pom.xml (original)
+++ activemq/activemq-cpp/trunk/pom.xml Sat Feb 21 18:59:00 2009
@@ -79,25 +79,18 @@
     <url>http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/</url>
   </scm>
 
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.activemq</groupId>
-      <artifactId>activemq-core</artifactId>
-      <version>${activemq-version}</version>
-    </dependency>
-  </dependencies>
-
   <build>
     <plugins>
       <!-- Used to generate the openwire commands and marshalers -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-antrun-plugin</artifactId>
+        <inherited>false</inherited>
         <configuration>
-        <tasks>
-          <taskdef name="generate" classname="org.apache.activemq.openwire.tool.AmqCppGeneratorTask"/>
-          <generate maxVersion="3" source="${activemq-core-dir}" target="${basedir}"/>
-        </tasks>
+          <tasks>
+            <taskdef name="generate" classname="org.apache.activemq.openwire.tool.AmqCppGeneratorTask"/>
+            <generate maxVersion="3" source="${activemq-core-dir}" target="${basedir}"/>
+          </tasks>
         </configuration>
         <dependencies>
           <dependency>
@@ -107,7 +100,6 @@
           </dependency>
         </dependencies>
       </plugin>
-      <!-- Makefile Generator for the Top ActiveMQ-CPP Library -->
       <!--
       <plugin>
         <groupId>org.apache.activemq.maven</groupId>
@@ -164,5 +156,4 @@
       -->
     </plugins>
   </build>
-
 </project>