replace deprecated dependency configurations

Using api and implementation instead of the
deprecated compile configuration.

Update to Gradle 6.0.
This commit is contained in:
2019-11-10 11:08:50 +01:00
parent ddd71ff14b
commit 4367323fcd
11 changed files with 58 additions and 43 deletions

View File

@@ -1,16 +1,17 @@
apply plugin: 'antlr'
dependencies {
compile project(':pdb-api')
compile project(':file-utils')
compile project(':pdb-utils')
compile project(':block-storage')
implementation project(':pdb-api')
implementation project(':file-utils')
implementation project(':pdb-utils')
api project(':block-storage')
implementation project(':byte-utils')
antlr lib_antlr
compile lib_primitive_collections
compile lib_commons_lang3
implementation lib_primitive_collections
implementation lib_commons_lang3
compile lib_log4j2_slf4j_impl
implementation lib_log4j2_slf4j_impl
}