replace deprecated dependency configurations
Using api and implementation instead of the deprecated compile configuration. Update to Gradle 6.0.
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user