Author: arnaudsimon
Date: Sun Aug 5 08:11:42 2007
New Revision: 562884
URL: http://svn.apache.org/viewvc?view=rev&rev=562884
Log:
Added generation of message selector classes
Modified:
incubator/qpid/trunk/qpid/java/client/pom.xml
Modified: incubator/qpid/trunk/qpid/java/client/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/client/pom.xml?view=diff&rev=562884&r1=562883&r2=562884
==============================================================================
--- incubator/qpid/trunk/qpid/java/client/pom.xml (original)
+++ incubator/qpid/trunk/qpid/java/client/pom.xml Sun Aug 5 08:11:42 2007
@@ -129,6 +129,25 @@
</plugin>
<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>javacc-maven-plugin</artifactId>
+ <version>2.0</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <configuration>
+
<sourceDirectory>${basedir}/src/main/grammar</sourceDirectory>
+
<outputDirectory>${basedir}/target/generated-sources</outputDirectory>
+
<packageName>org.apache.qpid.nclient.jms.filter.selector</packageName>
+ </configuration>
+ <goals>
+ <goal>javacc</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>