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 passes again.
  • Loading branch information
dr0i committed Nov 11, 2022
1 parent f3651e9 commit 5edf835
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion metafix-runner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@ dependencies {

implementation "org.metafacture:metafacture-biblio:${versions.metafacture}"
implementation "org.metafacture:metafacture-json:${versions.metafacture}"
implementation "org.metafacture:metafacture-runner:${versions.metafacture}"
implementation "org.metafacture:metafacture-runner:${versions.metafacture}" //{
implementation "org.metafacture:metafacture-xml:${versions.metafacture}"

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

application {
Expand Down

0 comments on commit 5edf835

Please sign in to comment.