Using api and implementation instead of the deprecated compile configuration. Update to Gradle 6.0.
18 lines
377 B
Groovy
18 lines
377 B
Groovy
apply plugin: 'antlr'
|
|
|
|
dependencies {
|
|
implementation project(':pdb-api')
|
|
implementation project(':file-utils')
|
|
implementation project(':pdb-utils')
|
|
api project(':block-storage')
|
|
implementation project(':byte-utils')
|
|
antlr lib_antlr
|
|
|
|
implementation lib_primitive_collections
|
|
implementation lib_commons_lang3
|
|
|
|
implementation lib_log4j2_slf4j_impl
|
|
}
|
|
|
|
|