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/07/06 00:06:35 UTC

svn commit: r419357 - /incubator/activemq/trunk/activemq-core/pom.xml

Author: chirino
Date: Wed Jul  5 15:06:35 2006
New Revision: 419357

URL: http://svn.apache.org/viewvc?rev=419357&view=rev
Log:
Configure our use of the gram maven plugin so that it generates the openwire marshaller source code.


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

Modified: incubator/activemq/trunk/activemq-core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/activemq/trunk/activemq-core/pom.xml?rev=419357&r1=419356&r2=419357&view=diff
==============================================================================
--- incubator/activemq/trunk/activemq-core/pom.xml (original)
+++ incubator/activemq/trunk/activemq-core/pom.xml Wed Jul  5 15:06:35 2006
@@ -282,6 +282,36 @@
         </executions>
       </plugin>
 
+      <!-- Use Gram to Gernerate the OpenWire Marshallers -->
+      <plugin>
+        <groupId>incubator-activemq</groupId>
+        <artifactId>maven-gram-plugin</artifactId>
+        <version>${pom.version}</version>
+        <configuration>
+           <scripts>
+             GenerateJavaMarshalling.groovy:
+             GenerateJavaTests.groovy:
+             GenerateCSharpMarshalling.groovy:
+             GenerateCSharpClasses.groovy:
+             GenerateCppMarshallingClasses.groovy:
+             GenerateCppMarshallingHeaders.groovy:
+             GenerateCppHeaders.groovy:
+             GenerateCppClasses.groovy:
+             GenerateCMarshalling.groovy:
+           </scripts>
+           <groovyProperties>
+             <version>1</version>
+           </groovyProperties>
+        </configuration>
+        <dependencies>
+          <dependency>
+            <groupId>incubator-activemq</groupId>
+            <artifactId>activemq-openwire-generator</artifactId>
+            <version>${pom.version}</version>
+          </dependency>
+        </dependencies>
+      </plugin>
+
       <plugin>
         <artifactId>maven-antrun-plugin</artifactId>
         <executions>