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,11 +1,12 @@
dependencies {
compile project(':pdb-api')
compile project(':data-store')
compile project(':file-utils')
compile lib_jackson_databind
compile lib_commons_collections4
api project(':pdb-api')
api project(':data-store')
implementation project(':file-utils')
implementation lib_jackson_databind
implementation lib_commons_collections4
compile lib_log4j2_core
compile lib_log4j2_slf4j_impl
implementation lib_log4j2_core
implementation lib_log4j2_slf4j_impl
testImplementation project(':pdb-utils')
}