Skip to content

Commit

Permalink
Pin antlr-runtime dependency to 3.2 (#266)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dr0i authored and blackwinter committed Nov 14, 2022
1 parent 6d82e08 commit 08d992e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ subprojects {
ext {
versions = [
'ace': '1.3.3',
'antlr': '3.2',
'equalsverifier': '3.8.2',
'jackson': '2.13.3',
'jetty': '9.4.14.v20181114',
Expand Down
4 changes: 4 additions & 0 deletions metafix-runner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ dependencies {
implementation "org.metafacture:metafacture-json:${versions.metafacture}"
implementation "org.metafacture:metafacture-runner:${versions.metafacture}"
implementation "org.metafacture:metafacture-xml:${versions.metafacture}"

implementation('org.antlr:antlr-runtime') {
version { strictly versions.antlr }
}
}

application {
Expand Down

0 comments on commit 08d992e

Please sign in to comment.