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:
parent
95aa8246ed
commit
abc8225e9d
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue