at the moment we expose `antlr` as an implementation dependency, which is exposed as a compile dependency. Instead use `antlr_runtime` as a runtime-only dependency and `antlr` for the `AntlrPlugin`

This commit is contained in:
Steve Ebersole 2021-10-07 13:10:53 -05:00
parent 95aa8246ed
commit abc8225e9d
1 changed files with 2 additions and 3 deletions

View File

@ -21,9 +21,6 @@ configurations {
tests {
description = 'Configuration for the produced test jar'
}
implementation {
extendsFrom antlr
}
}
@ -40,6 +37,8 @@ dependencies {
implementation libraries.jakarta_jaxb_runtime
implementation libraries.jakarta_inject
runtimeOnly libraries.antlr4_runtime
compileOnly libraries.jakarta_jacc
compileOnly libraries.jakarta_validation
compileOnly libraries.jakarta_cdi