Configure our use of the gram maven plugin so that it generates the openwire marshaller source code.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@419357 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-07-05 22:06:35 +00:00
parent fcb5d9ed5f
commit a4b13add62

View File

@ -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>