added actual way antlr dep should be specified (commented out, since maven currently [thru 2.0.7] has a regression bug which does not allow this to work)

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12785 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2007-07-20 19:20:16 +00:00
parent af48068ded
commit 920f7912b4
1 changed files with 10 additions and 0 deletions

View File

@ -88,6 +88,16 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antlr-plugin</artifactId>
<!--
This is how we should define dep on antlr...
<dependencies>
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>2.7.6</version>
</dependency>
</dependencies>
-->
<configuration>
<grammars>hql.g,hql-sql.g,sql-gen.g</grammars>
</configuration>