diff options
Diffstat (limited to 'java/client/pom.xml')
| -rw-r--r-- | java/client/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/java/client/pom.xml b/java/client/pom.xml index bd869d96ca..b58ab9fe3a 100644 --- a/java/client/pom.xml +++ b/java/client/pom.xml @@ -123,6 +123,25 @@ <build> <plugins> + + <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.qpidity.filter.selector</packageName> + </configuration> + <goals> + <goal>javacc</goal> + </goals> + </execution> + </executions> + </plugin> <plugin> <artifactId>minijar-maven-plugin</artifactId> |
