summaryrefslogtreecommitdiff
path: root/java/client
diff options
context:
space:
mode:
authorArnaud Simon <arnaudsimon@apache.org>2007-08-05 15:11:42 +0000
committerArnaud Simon <arnaudsimon@apache.org>2007-08-05 15:11:42 +0000
commitaa40aa0e853c459d09a27eef15e12091b9d1a50b (patch)
treea7f7f300a07b63989411aadb2d61b7d4385b0121 /java/client
parent543642d7bfa6ee9f5f19b4e6172b194380a3a6ec (diff)
downloadqpid-python-aa40aa0e853c459d09a27eef15e12091b9d1a50b.tar.gz
Added generation of message selector classes
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@562884 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/client')
-rw-r--r--java/client/pom.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/java/client/pom.xml b/java/client/pom.xml
index c36c54a10f..8806c45d65 100644
--- a/java/client/pom.xml
+++ b/java/client/pom.xml
@@ -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>