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 2006/09/30 02:21:50 UTC

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

Author: tabish
Date: Fri Sep 29 17:21:50 2006
New Revision: 451500

URL: http://svn.apache.org/viewvc?view=rev&rev=451500
Log:
Add openwire generator plugin settings.

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

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/pom.xml?view=diff&rev=451500&r1=451499&r2=451500
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/pom.xml (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/pom.xml Fri Sep 29 17:21:50 2006
@@ -1,3 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
 <!--
     Licensed to the Apache Software Foundation (ASF) under one or more
     contributor license agreements.  See the NOTICE file distributed with
@@ -191,6 +193,24 @@
 		          </sources>
 		      	</configuration>
 		      </plugin>
+              <!-- Used to generate the openwire commands and marshallers -->
+              <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <configuration>
+                  <tasks>
+                    <taskdef name="generate" classname="org.apache.activemq.openwire.tool.AmqCppGeneratorTask"/>
+                    <generate version="2" source="${activemq-core-dir}" target="${basedir}"/>
+                  </tasks>
+                </configuration>
+                <dependencies>
+                  <dependency>
+                    <groupId>org.apache.activemq</groupId>
+                    <artifactId>activemq-openwire-generator</artifactId>
+                    <version>4.1-incubator-SNAPSHOT</version>
+                  </dependency>
+                </dependencies>
+              </plugin>
 		    </plugins>
 	    </pluginManagement>
   </build>