Skip to content

Commit 08d992e

Browse files
dr0iblackwinter
authored andcommitted
Pin antlr-runtime dependency to 3.2 (#266)
This resolves "Caused by: java.lang.NoSuchFieldError: EOF_TOKEN at org.eclipse.xtext.parser.antlr.Lexer.nextToken(Lexer.java:60)" so that integration tests pass again.
1 parent 6d82e08 commit 08d992e

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ subprojects {
3434
ext {
3535
versions = [
3636
'ace': '1.3.3',
37+
'antlr': '3.2',
3738
'equalsverifier': '3.8.2',
3839
'jackson': '2.13.3',
3940
'jetty': '9.4.14.v20181114',

metafix-runner/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ dependencies {
99
implementation "org.metafacture:metafacture-json:${versions.metafacture}"
1010
implementation "org.metafacture:metafacture-runner:${versions.metafacture}"
1111
implementation "org.metafacture:metafacture-xml:${versions.metafacture}"
12+
13+
implementation('org.antlr:antlr-runtime') {
14+
version { strictly versions.antlr }
15+
}
1216
}
1317

1418
application {

0 commit comments

Comments
 (0)