update antlr plugin version based on their latest SVN
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14206 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
a9fe7f15a3
commit
6807914f13
11
core/pom.xml
11
core/pom.xml
|
@ -22,7 +22,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>antlr</groupId>
|
<groupId>antlr</groupId>
|
||||||
<artifactId>antlr</artifactId>
|
<artifactId>antlr</artifactId>
|
||||||
<version>${antlr.version}</version>
|
<version>${antlrVersion}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-collections</groupId>
|
<groupId>commons-collections</groupId>
|
||||||
|
@ -85,12 +85,12 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>antlr-maven-plugin</artifactId>
|
<artifactId>antlr-maven-plugin</artifactId>
|
||||||
<version>2.0-SNAPSHOT</version>
|
<version>${antlrPluginVersion}</version>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>antlr</groupId>
|
<groupId>antlr</groupId>
|
||||||
<artifactId>antlr</artifactId>
|
<artifactId>antlr</artifactId>
|
||||||
<version>${antlr.version}</version>
|
<version>${antlrVersion}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
@ -112,7 +112,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.codehaus.mojo</groupId>
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
<artifactId>antlr-maven-plugin</artifactId>
|
<artifactId>antlr-maven-plugin</artifactId>
|
||||||
<version>2.0-SNAPSHOT</version>
|
<version>${antlrPluginVersion}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<!-- eventually should be based on the second phase grammar -->
|
<!-- eventually should be based on the second phase grammar -->
|
||||||
<grammars>hql.g</grammars>
|
<grammars>hql.g</grammars>
|
||||||
|
@ -150,7 +150,8 @@
|
||||||
</reporting>
|
</reporting>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<antlr.version>2.7.6</antlr.version>
|
<antlrVersion>2.7.6</antlrVersion>
|
||||||
|
<antlrPluginVersion>2.0.0-SNAPSHOT</antlrPluginVersion>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in New Issue