Hi Wayyne,
I appreciate your help. I believe my configuration is
correct because when I run mvn antlr3:antlr , it does not throw any error and
it does generate QueryLexer.token. The issue is, it generates,
QueryLexer.token but it does not generate QueryLexer.java
Thanks
Niraj
On 12/13/10 12:20 PM, "Wayne Fay" <[email protected]> wrote:
> <configuration>
> <grammars>org/apache/pig/parser/QueryLexer.g</grammars>
> <grammars>org/apache/pig/parser/QueryParser.g</grammars>
I don't use Antlr but generally I'd expect this to be:
<grammars>
<grammar>abc</grammar>
<grammar>xyz</grammar>
</grammars>
Are you sure that you've got the configuration correct?
Wayne